From 6c1e66de994377f916d7c3aa8793fd0992f7f522 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Sun, 1 May 2011 17:50:48 +0200 Subject: [PATCH] do not check the button --- openlp/core/ui/shortcutlistdialog.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index 449f60509..55ac694f1 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -43,8 +43,6 @@ class CaptureShortcutButton(QtGui.QPushButton): """ if event.key() == QtCore.Qt.Key_Space and self.isChecked(): event.ignore() - else: - self.setChecked(True) class Ui_ShortcutListDialog(object):