summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorbfox <bfox>2001-09-28 18:43:28 +0000
committerbfox <bfox>2001-09-28 18:43:28 +0000
commite69dd253220c61a134f1c93f33947597c6130e23 (patch)
tree9b65a4c799cb0fee011f125ea7d6c9a3c6f78285 /gui.py
parent0a0880f8b3a15f15a43753d9f9616aacaeb8c707 (diff)
downloadanaconda-e69dd253220c61a134f1c93f33947597c6130e23.tar.gz
anaconda-e69dd253220c61a134f1c93f33947597c6130e23.tar.xz
anaconda-e69dd253220c61a134f1c93f33947597c6130e23.zip
add keyboard accelerators for opening and closing online help window. Resolves RFE #12173
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 0d01add35..0f9001d0d 100755
--- a/gui.py
+++ b/gui.py
@@ -716,6 +716,10 @@ class InstallControlWindow:
group = GtkAccelGroup()
self.nextButtonStock.add_accelerator ("clicked", group, GDK.F12,
GDK.RELEASE_MASK, 0);
+ self.hideHelpButton.add_accelerator ("clicked", group, GDK.F10,
+ GDK.RELEASE_MASK, 0);
+ self.showHelpButton.add_accelerator ("clicked", group, GDK.F11,
+ GDK.RELEASE_MASK, 0);
self.window.add_accel_group (group)
self.window.connect ("key-release-event", self.keyRelease)