We need to do the update here simply because of the inset deletion.

It must have been wrong before the updateBuffer() refactoring, too.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@38677 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-05-09 21:51:45 +00:00
parent 16c6442951
commit 3649716644

View File

@ -1655,8 +1655,9 @@ bool Text::dissolveInset(Cursor & cur)
// restore position
cur.pit() = min(cur.lastpit(), spit);
cur.pos() = min(cur.lastpos(), spos);
} else
cur.forceBufferUpdate();
}
cur.forceBufferUpdate();
// Ensure the current language is set correctly (bug 6292)
cur.text()->setCursor(cur, cur.pit(), cur.pos());