diff options
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 + |