fix 'off by one' cursor position when handling simultaneous super- and

subscripts


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2442 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-08-07 13:50:56 +00:00
parent b7f17d6ba7
commit 3d354d14c4
2 changed files with 1 additions and 14 deletions

View File

@ -32,21 +32,8 @@ General hints for bug reports:
----------------------------------------------------------------------
"R. Lahaye" <lahaye@users.sourceforge.net>
- Mathematical \frac with subscripts, for example:
\begin_inset Formula $\frac{\alpha _{1} }{\beta _{2} }$
is wrongly displayed
Dekel:
Array/eqnarray
// - Ctrl+enter doesn't work
// - When creating a matrix/align/eqnarray all columns are centered.
Macros:
?? - When changing the macro definition, all instances are not updated.

View File

@ -637,8 +637,8 @@ void MathCursor::interpret(string const & s)
p = new MathScriptInset(up, !up);
}
insert(p);
plainLeft();
}
plainLeft();
push(p, true);
if (up)
p->up(true);