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 2158022..59ae21f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
- XFdrake:
+ o use 24dpp by default, even on DRI (needed for kde4)
o ensure we don't drop non-main "Device" (when modifying "Options", #41410)
o use nvidia-current default settings for nvidia173 as well
o no need to force XaaNoOffscreenPixmaps, it is the default now in
diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm
index 0c87503..7159873 100644
--- a/lib/Xconfig/resolution_and_depth.pm
+++ b/lib/Xconfig/resolution_and_depth.pm
@@ -87,7 +87,7 @@ sub allowed {
} elsif ($card->{BoardName} eq 'NVIDIA RIVA 128') {
@depths = qw(8 15 24);
} elsif ($card->{use_DRI_GLX}) {
- $prefered_depth = 16;
+ $prefered_depth = 24;
@depths = (16, 24);
} else {
@depths = our @depths_available;