mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Disable flex-insert when inset does not exist
This is useful when adding icons to the toolbar that insert insets not availble by default (but provided by a module). Fixes bug #11690.
This commit is contained in:
parent
96e7fcd4e0
commit
cd83386363
@ -3183,13 +3183,17 @@ bool Text::getStatus(Cursor & cur, FuncRequest const & cmd,
|
||||
case LFUN_FLEX_INSERT: {
|
||||
code = FLEX_CODE;
|
||||
string s = cmd.getArg(0);
|
||||
InsetLayout il =
|
||||
cur.buffer()->params().documentClass().insetLayout(from_utf8(s));
|
||||
if (il.lyxtype() != InsetLyXType::CHARSTYLE &&
|
||||
il.lyxtype() != InsetLyXType::CUSTOM &&
|
||||
il.lyxtype ()!= InsetLyXType::STANDARD)
|
||||
if (!cur.buffer()->params().documentClass().hasInsetLayout(from_utf8(s)))
|
||||
enable = false;
|
||||
break;
|
||||
else {
|
||||
InsetLayout il =
|
||||
cur.buffer()->params().documentClass().insetLayout(from_utf8(s));
|
||||
if (il.lyxtype() != InsetLyXType::CHARSTYLE &&
|
||||
il.lyxtype() != InsetLyXType::CUSTOM &&
|
||||
il.lyxtype ()!= InsetLyXType::STANDARD)
|
||||
enable = false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
case LFUN_BOX_INSERT:
|
||||
code = BOX_CODE;
|
||||
|
Loading…
Reference in New Issue
Block a user