diff options
author | bfox <bfox> | 2000-12-15 18:26:16 +0000 |
---|---|---|
committer | bfox <bfox> | 2000-12-15 18:26:16 +0000 |
commit | 0aff4c850171c5a6a3b35fdb419dde7de4fa7fb4 (patch) | |
tree | 42d7c590116bc2dbd1fdcd1de43b140071147988 /iw/xconfig_gui.py | |
parent | 5b310f50924fc616a4007901a7ead6c28abfd01d (diff) | |
download | anaconda-0aff4c850171c5a6a3b35fdb419dde7de4fa7fb4.tar.gz anaconda-0aff4c850171c5a6a3b35fdb419dde7de4fa7fb4.tar.xz anaconda-0aff4c850171c5a6a3b35fdb419dde7de4fa7fb4.zip |
Fixed stupid bug going forward and back in customization screen.
Diffstat (limited to 'iw/xconfig_gui.py')
-rw-r--r-- | iw/xconfig_gui.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py index 8edbfb9fb..5e394ca91 100644 --- a/iw/xconfig_gui.py +++ b/iw/xconfig_gui.py @@ -29,6 +29,7 @@ class XCustomWindow (InstallWindow): self.didTest = 0 self.selectedDepth = "" self.selectedRes = "" +# self.newDesktop = "GNOME" def getNext (self): newmodes = {} @@ -447,6 +448,7 @@ class XCustomWindow (InstallWindow): # self.vbox4 = GtkVBox() if self.todo.hdList['gnome-core'].selected: + self.newDesktop = "GNOME" im = self.ics.readPixmap ("gnome.png") if im: im.render () @@ -461,7 +463,8 @@ class XCustomWindow (InstallWindow): elif self.todo.hdList['kdebase'].selected: - im = self.ics.readPixmap ("kde.png") + self.newDesktop = "KDE" + im = self.ics.readPixmap ("kde.png") if im: im.render () pix = im.make_pixmap () |