summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/Xconfig/resolution_and_depth.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ba9d645..9327404 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- default theme backgrounds are now png instead of jpg, adapted symlink
accordingly (default.png) (mga#19292)
+- default background size is now 1600x1200, not 1024x768
Version 1.14 - 14 July 2016
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index fc008ce..0bfb1e9 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -254,7 +254,7 @@ sub set_default_background {
my ($resolution) = @_;
$resolution->{X} && $resolution->{Y} or do {
- $resolution = { X => 1024, Y => 768 };
+ $resolution = { X => 1600, Y => 1200 };
log::l("defaulting background resolution to $resolution->{X}x$resolution->{Y}");
};