mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
* src/Text2.cpp:
- fix wrong DEPM in ct mode (bug 3961). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@19885 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7d327f2688
commit
97e7578b62
@ -1159,7 +1159,8 @@ bool Text::deleteEmptyParagraphMechanism(Cursor & cur,
|
||||
&& old.pos() < oldpar.size()
|
||||
&& oldpar.isLineSeparator(old.pos())
|
||||
&& oldpar.isLineSeparator(old.pos() - 1)
|
||||
&& !oldpar.isDeleted(old.pos() - 1)) {
|
||||
&& !oldpar.isDeleted(old.pos() - 1)
|
||||
&& !oldpar.isDeleted(old.pos())) {
|
||||
oldpar.eraseChar(old.pos() - 1, cur.buffer().params().trackChanges);
|
||||
#ifdef WITH_WARNINGS
|
||||
#warning This will not work anymore when we have multiple views of the same buffer
|
||||
|
@ -102,10 +102,12 @@ What's new
|
||||
|
||||
- Reset current cursor font when going to a bookmark.
|
||||
|
||||
- Fix crash when login out from within Gnome desktop (Bug 1656).
|
||||
- Fix crash when login out from within Gnome desktop (bug 1656).
|
||||
|
||||
- Fix crash when inserting float.
|
||||
|
||||
- Fix wrong handling of spaces in change tracking mode (bug 3961).
|
||||
|
||||
|
||||
* DOCUMENTATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user