Configure Custom shortcut error fix

This commit is contained in:
John Morris 2019-11-01 11:04:44 +00:00 committed by Tim Bentley
parent 2d0254f45a
commit 2f94f35a42

View File

@ -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 = ''