diff options
author | Matt Wilson <msw@redhat.com> | 1999-10-25 23:23:48 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-10-25 23:23:48 +0000 |
commit | 0a50b555fc462cb362a5653b99ca1d6dfd11cc9e (patch) | |
tree | a1edc429fe2fd252a0d43dc3b6494f1cd4556ccc | |
parent | 1fceab0e8ed1f1c6e2524af5b3b303a8afaf7c08 (diff) | |
download | anaconda-0a50b555fc462cb362a5653b99ca1d6dfd11cc9e.tar.gz anaconda-0a50b555fc462cb362a5653b99ca1d6dfd11cc9e.tar.xz anaconda-0a50b555fc462cb362a5653b99ca1d6dfd11cc9e.zip |
fixups
-rw-r--r-- | iw/xconfig.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py index 8b075b6fe..c1388ced8 100644 --- a/iw/xconfig.py +++ b/iw/xconfig.py @@ -71,7 +71,8 @@ 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': + 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'): self.todo.x.modes["8"].append("1920x1200") depths = self.todo.x.modes.keys () |