diff options
author | pnfisher <pnfisher> | 1999-09-25 23:24:40 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-09-25 23:24:40 +0000 |
commit | 252bc03b4ceff6bbe7bf05b32231fd82ecd27b1e (patch) | |
tree | d777cbe90e575fabaa96c3524afa90f90206be99 /iw | |
parent | 316f910899da648a2015de58369c5d010f00a250 (diff) | |
download | anaconda-252bc03b4ceff6bbe7bf05b32231fd82ecd27b1e.tar.gz anaconda-252bc03b4ceff6bbe7bf05b32231fd82ecd27b1e.tar.xz anaconda-252bc03b4ceff6bbe7bf05b32231fd82ecd27b1e.zip |
Allow next to be grabbed, and have congrats screen grab it.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/congrats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/congrats.py b/iw/congrats.py index 4ff50dd51..581990f5b 100644 --- a/iw/congrats.py +++ b/iw/congrats.py @@ -12,6 +12,7 @@ class CongratulationWindow (InstallWindow): ics.setPrevEnabled (0) ics.setNextButton (STOCK_PIXMAP_QUIT, _("Exit")) ics.setNextEnabled (1) + ics.setGrabNext (1) def getScreen (self): self.ics.setHelpEnabled (0) @@ -41,6 +42,5 @@ class CongratulationWindow (InstallWindow): box.pack_start (label, TRUE, TRUE, 0) hbox.pack_start (box) - return hbox |