From 1133f2e0c7366378beff50e137ccbd6fb2aafbae Mon Sep 17 00:00:00 2001 From: Jonathan Springer Date: Mon, 9 Dec 2013 07:24:21 -0500 Subject: [PATCH] pass all keyboard events to shortcut dialog --- openlp/core/ui/shortcutlistform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/shortcutlistform.py b/openlp/core/ui/shortcutlistform.py index 612c04993..a078850ed 100644 --- a/openlp/core/ui/shortcutlistform.py +++ b/openlp/core/ui/shortcutlistform.py @@ -79,7 +79,7 @@ class ShortcutListForm(QtGui.QDialog, Ui_ShortcutListDialog): self.keyReleaseEvent(event) elif self.primaryPushButton.isChecked() or \ self.alternatePushButton.isChecked(): - event.ignore() + self.keyReleaseEvent(event) elif event.key() == QtCore.Qt.Key_Escape: event.accept() self.close()