diff options
author | Matt Wilson <msw@redhat.com> | 2002-07-09 15:37:53 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-07-09 15:37:53 +0000 |
commit | ece9e1f8e8cce7df506aed08f17429b0a21b0199 (patch) | |
tree | f54d867aaf70e912663ff63c41fc943afc13edc8 /iw | |
parent | a2b18fc0d1240460fd8ccc1c0c38a9e2e68cb6d3 (diff) | |
download | anaconda-ece9e1f8e8cce7df506aed08f17429b0a21b0199.tar.gz anaconda-ece9e1f8e8cce7df506aed08f17429b0a21b0199.tar.xz anaconda-ece9e1f8e8cce7df506aed08f17429b0a21b0199.zip |
add mnemonic
Diffstat (limited to 'iw')
-rw-r--r-- | iw/congrats_gui.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py index 069a93c15..9d6d2c5c9 100644 --- a/iw/congrats_gui.py +++ b/iw/congrats_gui.py @@ -22,13 +22,13 @@ class CongratulationWindow (InstallWindow): windowTitle = N_("Congratulations") def __init__ (self, ics): - InstallWindow.__init__ (self, ics) + InstallWindow.__init__(self, ics) - ics.setPrevEnabled (gtk.FALSE) - ics.setNextButton (gtk.STOCK_QUIT, _("Exit")) - ics.setHelpButtonEnabled (gtk.FALSE) + ics.setPrevEnabled(gtk.FALSE) + ics.setNextButton(gtk.STOCK_QUIT, _("_Exit")) + ics.setHelpButtonEnabled(gtk.FALSE) ics.setHelpEnabled(gtk.FALSE) - ics.setGrabNext (1) + ics.setGrabNext(1) # CongratulationWindow tag=NA def getScreen (self): |