mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Better error message when try to bind a Hidden LFUN
(cherry picked from commit 1f2d7f4db9
)
This commit is contained in:
parent
2514a6baba
commit
4b1dc57d3b
@ -3130,6 +3130,15 @@ bool PrefShortcuts::validateNewShortcut(FuncRequest const & func,
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// It is not currently possible to bind Hidden lfuns such as self-insert. In
|
||||||
|
// the future, to remove this limitation, see GuiPrefs::insertShortcutItem
|
||||||
|
// and how it is used in GuiPrefs::shortcutOkPressed.
|
||||||
|
if (lyxaction.getActionType(func.action()) == LyXAction::Hidden) {
|
||||||
|
Alert::error(_("Failed to create shortcut"),
|
||||||
|
_("This LyX function is hidden and cannot be bound."));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (k.length() == 0) {
|
if (k.length() == 0) {
|
||||||
Alert::error(_("Failed to create shortcut"),
|
Alert::error(_("Failed to create shortcut"),
|
||||||
_("Invalid or empty key sequence"));
|
_("Invalid or empty key sequence"));
|
||||||
@ -3194,9 +3203,6 @@ void PrefShortcuts::shortcutOkPressed()
|
|||||||
shortcutsTW->setCurrentItem(item);
|
shortcutsTW->setCurrentItem(item);
|
||||||
shortcutsTW->scrollToItem(item);
|
shortcutsTW->scrollToItem(item);
|
||||||
} else {
|
} else {
|
||||||
// FIXME: The error message could be more explicit. This can happen in
|
|
||||||
// particular if the user wants to introduce a LFUN which is Hidden such
|
|
||||||
// as self-insert.
|
|
||||||
Alert::error(_("Failed to create shortcut"),
|
Alert::error(_("Failed to create shortcut"),
|
||||||
_("Can not insert shortcut to the list"));
|
_("Can not insert shortcut to the list"));
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user