mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
* dociterator.C (forwardPosNoDescend): when at the end of the
inset, leave it, like forwardPos does (bug 2510). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14648 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
54c60ebe47
commit
dcbfef703a
@ -1,3 +1,8 @@
|
||||
2006-08-13 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* dociterator.C (forwardPosNoDescend): when at the end of the
|
||||
inset, leave it, like forwardPos does (bug 2510).
|
||||
|
||||
2006-08-12 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* buffer.C (updateDocLang): update labels when changing language.
|
||||
|
@ -398,7 +398,11 @@ void DocIterator::forwardPosNoDescend()
|
||||
}
|
||||
//lyxerr << "... no next idx" << endl;
|
||||
|
||||
// otherwise we can't move on
|
||||
// otherwise leave inset and jump over inset as a whole
|
||||
pop_back();
|
||||
// 'top' is invalid now...
|
||||
if (!empty())
|
||||
++top().pos();
|
||||
}
|
||||
|
||||
|
||||
|
@ -58,6 +58,8 @@ What's new
|
||||
- Fix crash on save (including dataloss) when the backup directory
|
||||
was invalid or not writeable(bug 2740).
|
||||
|
||||
- Fix lockup when accepting a change in a text inset (bug 2510).
|
||||
|
||||
- Update labels on screen when changing language.
|
||||
|
||||
- Show an error box when failing to update the TeX Information dalog data.
|
||||
|
Loading…
Reference in New Issue
Block a user