diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/Xconfig/resolution_and_depth.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- XFdrake: + o do set a background image when using resolution "Automatic" (#43644) + Version 0.60 - 9 September 2008 - XFdrake: diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm index 19b1fc9..39ba7b9 100644 --- a/lib/Xconfig/resolution_and_depth.pm +++ b/lib/Xconfig/resolution_and_depth.pm @@ -241,9 +241,9 @@ sub set_resolution { @other = grep { $_->{X} < $resolution->{X} } @other; @other = filter_on_ratio($ratio, @other); - set_default_background($resolution); set_915resolution($resolution) if is_915resolution_configured(); } + set_default_background($resolution); my $resolutions = [ $resolution, @other ]; $raw_X->set_resolutions($resolutions); $resolutions; |