From: André Pönitz Date: Tue, 7 Aug 2001 13:50:56 +0000 (+0000) Subject: fix 'off by one' cursor position when handling simultaneous super- and X-Git-Tag: 1.6.10~20903 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3d354d14c41ba184df9fcd7298e64adceca6f9a5;p=lyx.git 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 --- diff --git a/src/mathed/BUGS b/src/mathed/BUGS index c19a7f63d6..a3453bb863 100644 --- a/src/mathed/BUGS +++ b/src/mathed/BUGS @@ -32,21 +32,8 @@ General hints for bug reports: ---------------------------------------------------------------------- -"R. Lahaye" -- 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. diff --git a/src/mathed/math_cursor.C b/src/mathed/math_cursor.C index ace2f12289..56f2f8bd0f 100644 --- a/src/mathed/math_cursor.C +++ b/src/mathed/math_cursor.C @@ -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);