summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-02 22:01:00 +0000
committerMatt Wilson <msw@redhat.com>2000-02-02 22:01:00 +0000
commit1b3e0fe7dc72cca77e6b3c90971c31c7c1f17470 (patch)
tree13baf4e734a4f345fc088864219ec4c512832603 /gui.py
parent842840433993bb02b01e2c33859a8863526c8665 (diff)
downloadanaconda-1b3e0fe7dc72cca77e6b3c90971c31c7c1f17470.tar.gz
anaconda-1b3e0fe7dc72cca77e6b3c90971c31c7c1f17470.tar.xz
anaconda-1b3e0fe7dc72cca77e6b3c90971c31c7c1f17470.zip
add F12 accelerator key to the Next button
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index 0d8181332..6c1b10d8e 100755
--- a/gui.py
+++ b/gui.py
@@ -523,6 +523,10 @@ class InstallControlWindow (Thread):
self.prevButtonStock.connect ("clicked", self.prevClicked)
self.nextButtonStock.connect ("clicked", self.nextClicked)
+ group = GtkAccelGroup()
+ self.nextButtonStock.add_accelerator ("clicked", group, F12, RELEASE_MASK, 0);
+ self.window.add_accel_group (group)
+
self.buttonBox.add (self.prevButtonStock)
self.buttonBox.add (self.nextButtonStock)