Disable direct insertion of multiple spaces in mathed text

Fixes #1311

(cherry picked from commit 8202e4e571)
This commit is contained in:
Enrico Forestieri 2021-02-04 21:20:45 +01:00
parent 12f67ef154
commit 7dc7315e5f
2 changed files with 9 additions and 1 deletions

View File

@ -1766,7 +1766,13 @@ bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
// but suppress direct insertion of two spaces in a row
// the still allows typing '<space>a<space>' and deleting the 'a', but
// it is better than nothing...
if (cur.pos() == 0 || cur.prevAtom()->getChar() != ' ') {
pos_type const pos = cur.pos();
pos_type const lastpos = cur.lastpos();
if ((pos == 0 && lastpos == 0)
|| (pos == 0 && cur.nextAtom()->getChar() != ' ')
|| (pos == lastpos && cur.prevAtom()->getChar() != ' ')
|| (pos > 0 && cur.prevAtom()->getChar() != ' '
&& cur.nextAtom()->getChar() != ' ')) {
cur.insert(c);
// FIXME: we have to enable full redraw here because of the
// visual box corners that define the inset. If we know for

View File

@ -76,6 +76,8 @@ What's new
- Fix unwanted scrolling of window when using "copy". (bug 11225).
- Disable direct insertion of multiple spaces in mathed text (bug 1311).
* INTERNALS