summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-26 02:01:49 +0000
committerMatt Wilson <msw@redhat.com>1999-10-26 02:01:49 +0000
commit03f6ee1b095a661766a7d024213407d903e2d3a5 (patch)
tree61e36cc63b41d275834caf234e0008440a46970f /iw
parent0a50b555fc462cb362a5653b99ca1d6dfd11cc9e (diff)
downloadanaconda-03f6ee1b095a661766a7d024213407d903e2d3a5.tar.gz
anaconda-03f6ee1b095a661766a7d024213407d903e2d3a5.tar.xz
anaconda-03f6ee1b095a661766a7d024213407d903e2d3a5.zip
added
Diffstat (limited to 'iw')
-rw-r--r--iw/xconfig.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py
index c1388ced8..24059fcbd 100644
--- a/iw/xconfig.py
+++ b/iw/xconfig.py
@@ -71,8 +71,10 @@ class XCustomWindow (InstallWindow):
hbox = GtkHBox (FALSE, 5)
# I'm not sure what monitors handle this wide aspect resolution, so better play safe
+ monName = self.todo.x.monName
if (self.todo.x.vidRam and self.todo.x.vidRam >= 4096 and
- self.todo.x.monName and self.todo.x.monName[:11] == 'Sun 24-inch'):
+ ((monName and len (monName) >= 11 and monName[:11] == 'Sun 24-inch') or
+ self.todo.x.monName == 'Sony GDM-W900')):
self.todo.x.modes["8"].append("1920x1200")
depths = self.todo.x.modes.keys ()