fix the zombie chars

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7992 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Alfredo Braunstein 2003-10-27 20:23:26 +00:00
parent c24f5b4874
commit 12a2f2705f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-10-27 Alfredo Braunstein <abraunst@libero.it>
* text.C (backspace): fix the "zombie characters"
2003-10-27 Alfredo Braunstein <abraunst@libero.it>
* lyxfunc.C (dispatch): small fix to toc navigation inside branches

View File

@ -1679,7 +1679,7 @@ void LyXText::backspace()
setCurrentFont();
redoParagraph();
setCursor(cursor.par(), cursor.pos(), false, !cursor.boundary());
setCursor(cursor.par(), cursor.pos(), false, cursor.boundary());
}