From 34f8de69ed2a7ecf4e33c1cf2da0c09cb989a5c6 Mon Sep 17 00:00:00 2001 From: Robert Kaye Date: Thu, 17 Jul 2008 12:08:05 -0700 Subject: [PATCH] Change the hotkey for help to the right key for OS X --- picard/ui/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picard/ui/mainwindow.py b/picard/ui/mainwindow.py index 00c1df906..60bbe6a1d 100644 --- a/picard/ui/mainwindow.py +++ b/picard/ui/mainwindow.py @@ -196,7 +196,7 @@ class MainWindow(QtGui.QMainWindow): # Windows, KDE and Gnome HID use F1 for this. MacOSX seems to have Cmd-H as a standard if sys.platform == "darwin": - help_shortcut = "Ctrl+H" + help_shortcut = "Ctrl+?" else: help_shortcut = "F1"