summaryrefslogtreecommitdiffstats
path: root/iw/xconfig.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-10-25 16:08:24 +0000
committerjakub <jakub>1999-10-25 16:08:24 +0000
commit359a9b1ebaf39e0a8a48c1cdb6c9dd2b137646f9 (patch)
tree2cda1eeb94da0603f7e6dbbdd3a1612e3a67704d /iw/xconfig.py
parentf5c3c1017035b6525a16e44aa06b9a9a5e7b882a (diff)
downloadanaconda-359a9b1ebaf39e0a8a48c1cdb6c9dd2b137646f9.tar.gz
anaconda-359a9b1ebaf39e0a8a48c1cdb6c9dd2b137646f9.tar.xz
anaconda-359a9b1ebaf39e0a8a48c1cdb6c9dd2b137646f9.zip
Play safe and never make 1920x1200 a default resolution, plus allow it to be
chosen on Sun 24-inch only for now. For 6.2 this can be removed, but now I don't want to touch much.
Diffstat (limited to 'iw/xconfig.py')
-rw-r--r--iw/xconfig.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py
index 36658157a..8b075b6fe 100644
--- a/iw/xconfig.py
+++ b/iw/xconfig.py
@@ -70,6 +70,10 @@ class XCustomWindow (InstallWindow):
hbox = GtkHBox (FALSE, 5)
+ # I'm not sure what monitors handle this wide aspect resolution, so better play safe
+ if self.todo.x.vidRam and self.todo.x.vidRam >= 4096 and self.todo.x.monName[:11] == 'Sun 24-inch':
+ self.todo.x.modes["8"].append("1920x1200")
+
depths = self.todo.x.modes.keys ()
depths.sort (self.numCompare)