summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-07-19 04:57:26 +0000
committerMike Fulbright <msf@redhat.com>2002-07-19 04:57:26 +0000
commit7b39b05477a67b7e6ebe72e45144bbfa11840607 (patch)
tree3f4c1ae870469d33c47b01224d16a77e0e8aa99c /iw
parentdfd20530f2c0337ebde99c8e36a792bb76d2d230 (diff)
downloadanaconda-7b39b05477a67b7e6ebe72e45144bbfa11840607.tar.gz
anaconda-7b39b05477a67b7e6ebe72e45144bbfa11840607.tar.xz
anaconda-7b39b05477a67b7e6ebe72e45144bbfa11840607.zip
fix problem not desensitizing buttons when you go back
Diffstat (limited to 'iw')
-rw-r--r--iw/installpath_gui.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/iw/installpath_gui.py b/iw/installpath_gui.py
index 571679b9b..96fbbcf62 100644
--- a/iw/installpath_gui.py
+++ b/iw/installpath_gui.py
@@ -184,4 +184,11 @@ class InstallPathWindow (InstallWindow):
self.toggled(button)
+ # make sure we get sensitivity setup right
+ for (button, box, buttons) in self.topLevelButtonList:
+ if not box:
+ continue
+ sensitive = button.get_active()
+ box.set_sensitive(sensitive)
+
return finalVBox