From d916bad0c81fcff0381b14d94984e6c856a7b4a6 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 7 Mar 2013 12:20:57 +0100 Subject: [PATCH] fixed bug (thanks to our tests) --- openlp/core/utils/actions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/utils/actions.py b/openlp/core/utils/actions.py index cd11b9357..d6a335ac2 100644 --- a/openlp/core/utils/actions.py +++ b/openlp/core/utils/actions.py @@ -330,6 +330,7 @@ class ActionList(object): else: log.warn(u'Shortcut "%s" is removed from "%s" because another action already uses this shortcut.' % (shortcuts[0], action.objectName())) + shortcuts.remove(shortcuts[0]) action.setShortcuts([QtGui.QKeySequence(shortcut) for shortcut in shortcuts]) def remove_action(self, action, category=None):