Fix crash when selecting part of a macro and trying to resume macro-mode editing.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30395 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Vincent van Ravesteijn 2009-07-07 08:13:07 +00:00
parent bca1c1b92b
commit ebe9b42279

View File

@ -1569,6 +1569,8 @@ bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
return true;
}
selClearOrDel(cur);
MathMacro const * macro = cur.inset().asInsetMath()->asMacro();
if (macro && macro->displayMode() == MathMacro::DISPLAY_UNFOLDED) {
// resume macro_mode
@ -1580,8 +1582,6 @@ bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
return true;
}
selClearOrDel(cur);
if (c == '\n') {
if (currentMode() <= InsetMath::TEXT_MODE)
cur.insert(c);