diff options
author | pnfisher <pnfisher> | 1999-09-25 20:17:06 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-09-25 20:17:06 +0000 |
commit | aef12ba00d0c90f813d5e32f9d1c0310de3ae6ed (patch) | |
tree | a6bf62f79d5c6a1561f85eb5f3b47b183ca6ecde /iw | |
parent | 0084dade603bcd88f148b3c53ffadac992cbc0ba (diff) | |
download | anaconda-aef12ba00d0c90f813d5e32f9d1c0310de3ae6ed.tar.gz anaconda-aef12ba00d0c90f813d5e32f9d1c0310de3ae6ed.tar.xz anaconda-aef12ba00d0c90f813d5e32f9d1c0310de3ae6ed.zip |
Disable help from getScreen.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/congrats.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/iw/congrats.py b/iw/congrats.py index 19a7ee698..4ff50dd51 100644 --- a/iw/congrats.py +++ b/iw/congrats.py @@ -12,9 +12,10 @@ class CongratulationWindow (InstallWindow): ics.setPrevEnabled (0) ics.setNextButton (STOCK_PIXMAP_QUIT, _("Exit")) ics.setNextEnabled (1) - ics.setHelpEnabled (FALSE) def getScreen (self): + self.ics.setHelpEnabled (0) + hbox = GtkHBox (TRUE, 5) im = self.ics.readPixmap ("done.png") @@ -42,3 +43,4 @@ class CongratulationWindow (InstallWindow): hbox.pack_start (box) return hbox + |