mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Fix bug 5751.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28554 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
45134ce20b
commit
e2d20d4386
@ -369,7 +369,13 @@ void InsetNote::string2params(string const & in, InsetNoteParams & params)
|
||||
Lexer lex;
|
||||
lex.setStream(data);
|
||||
lex.setContext("InsetNote::string2params");
|
||||
lex >> "note" >> "Note";
|
||||
lex >> "note";
|
||||
// There are cases, such as when we are called via getStatus() from
|
||||
// Dialog::canApply(), where we are just called with "note" rather
|
||||
// than a full "note Note TYPE".
|
||||
if (!lex.isOK())
|
||||
return;
|
||||
lex >> "Note";
|
||||
|
||||
params.read(lex);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user