forked from openlp/openlp
Configure Custom shortcut error fix
This commit is contained in:
parent
2d0254f45a
commit
2f94f35a42
@ -323,6 +323,13 @@ class ShortcutListForm(QtWidgets.QDialog, Ui_ShortcutListDialog, RegistryPropert
|
|||||||
if not toggled:
|
if not toggled:
|
||||||
return
|
return
|
||||||
action = self._current_item_action()
|
action = self._current_item_action()
|
||||||
|
if action is None:
|
||||||
|
QtWidgets.QMessageBox.information(self, translate('OpenLP.ShortcutListForm', 'Select an Action'),
|
||||||
|
translate('OpenLP.ShortcutListForm', 'Select an action and click one '
|
||||||
|
'of the buttons below to start '
|
||||||
|
'capturing a new primary or alternate shortcut, respectively.'))
|
||||||
|
|
||||||
|
else:
|
||||||
shortcuts = self._action_shortcuts(action)
|
shortcuts = self._action_shortcuts(action)
|
||||||
self.refresh_shortcut_list()
|
self.refresh_shortcut_list()
|
||||||
primary_button_text = ''
|
primary_button_text = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user