]> git.lyx.org Git - lyx.git/commitdiff
fix 'off by one' cursor position when handling simultaneous super- and
authorAndré Pönitz <poenitz@gmx.net>
Tue, 7 Aug 2001 13:50:56 +0000 (13:50 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 7 Aug 2001 13:50:56 +0000 (13:50 +0000)
subscripts

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2442 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/BUGS
src/mathed/math_cursor.C

index c19a7f63d6338d93faf96cda65137a5fe9a76aae..a3453bb8630fdf293e48ab55ff7ccedf24d20975 100644 (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.
index ace2f1228954417531070986fce3b4259629c3b5..56f2f8bd0f922299945b5e08c15942d33fae3fd1 100644 (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);