summaryrefslogtreecommitdiffstats
path: root/iw/xconfig.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-22 18:56:31 +0000
committerMatt Wilson <msw@redhat.com>1999-09-22 18:56:31 +0000
commit9419029d2db24d057522f9a74049062d96e9442b (patch)
tree40aace1b4b45a9f8b42fcd67446e52e08f860932 /iw/xconfig.py
parentcce09866fd0052e076c43796d620e98dfeb7850c (diff)
downloadanaconda-9419029d2db24d057522f9a74049062d96e9442b.tar.gz
anaconda-9419029d2db24d057522f9a74049062d96e9442b.tar.xz
anaconda-9419029d2db24d057522f9a74049062d96e9442b.zip
standard 640x480 for monitors we don't probe
Diffstat (limited to 'iw/xconfig.py')
-rw-r--r--iw/xconfig.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/iw/xconfig.py b/iw/xconfig.py
index 439343ce3..28890c165 100644
--- a/iw/xconfig.py
+++ b/iw/xconfig.py
@@ -37,6 +37,15 @@ class XCustomWindow (InstallWindow):
self.todo.x.modes = newmodes
def testPressed (self, widget, *args):
+ newmodes = {}
+
+ for depth in self.toggles.keys ():
+ newmodes[depth] = []
+ for (res, button) in self.toggles[depth]:
+ if button.get_active ():
+ newmodes[depth].append (res)
+
+ self.todo.x.modes = newmodes
try:
self.todo.x.test ()
except RuntimeError:
@@ -169,7 +178,7 @@ class XConfigWindow (InstallWindow):
self.autoBox.pack_start (result, FALSE)
self.monlist = None
- if self.todo.x.monID == "My Monitor":
+ if self.todo.x.monID == "Generic Monitor":
label = GtkLabel (_("Your monitor could not be "
"autodetected. Please choose it "
"from the list below:"))