fix 'invalid cursor position after typing \sum'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2310 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-07-23 14:30:22 +00:00
parent b321afd875
commit 86ea4e48e7
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,8 @@
* math_cursor.C: keep empty super/subscript a bit longer
* math_cursor.C: do not move into insets that don't have inner cells yet
2001-07-22 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* formula.C (insetAllowed): allow insertion of label

View File

@ -745,7 +745,8 @@ in_word_set(s) << " \n";
insert(p);
if (p->nargs()) {
plainLeft();
push(p, true);
//push(p, true);
Right(); // do not push for e.g. MathBigopInset
if (oldsel)
SelPaste();
}