diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-23 16:25:49 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-23 16:25:49 +0000 |
commit | 51d6cd63d0645dcb5e8590b6258c88acb92e6f8e (patch) | |
tree | 363042e9baa91a7438bb7fdd63b7f04575ab5722 /iw | |
parent | 655402e48991e68086bd020a46ab23d95d184d12 (diff) | |
download | anaconda-51d6cd63d0645dcb5e8590b6258c88acb92e6f8e.tar.gz anaconda-51d6cd63d0645dcb5e8590b6258c88acb92e6f8e.tar.xz anaconda-51d6cd63d0645dcb5e8590b6258c88acb92e6f8e.zip |
new manualmodes to keep track of this stuff
Diffstat (limited to 'iw')
-rw-r--r-- | iw/xconfig_gui.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py index 6522f215e..88de343fe 100644 --- a/iw/xconfig_gui.py +++ b/iw/xconfig_gui.py @@ -35,6 +35,7 @@ class XCustomWindow (InstallWindow): if button.get_active (): newmodes[depth].append (res) + self.todo.x.manualModes = newmodes self.todo.x.setModes(newmodes) def testPressed (self, widget, *args): @@ -92,7 +93,8 @@ class XCustomWindow (InstallWindow): button = GtkCheckButton (res) self.toggles[depth].append (res, button) vbox.pack_start (button, FALSE) - if self.todo.x.modes.has_key(depth) and res in self.todo.x.modes[depth]: + if (self.todo.x.manualModes.has_key(depth) + and res in self.todo.x.manualModes[depth]): button.set_active(1) hbox.pack_start (vbox) |