mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
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:
parent
b7f17d6ba7
commit
3d354d14c4
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user