mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-31 15:46:16 +00:00
Fix bug 5764: http://bugzilla.lyx.org/show_bug.cgi?id=5764.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28399 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
24cd681863
commit
0730c9235a
@ -525,7 +525,8 @@ bool Cursor::posVisRight(bool skip_inset)
|
|||||||
|
|
||||||
bool moved = (new_cur.pos() != pos()
|
bool moved = (new_cur.pos() != pos()
|
||||||
|| new_cur.pit() != pit()
|
|| new_cur.pit() != pit()
|
||||||
|| new_cur.boundary() != boundary());
|
|| new_cur.boundary() != boundary()
|
||||||
|
|| &new_cur.inset() != &inset());
|
||||||
|
|
||||||
if (moved) {
|
if (moved) {
|
||||||
LYXERR(Debug::RTL, "moving to: " << new_cur.pos()
|
LYXERR(Debug::RTL, "moving to: " << new_cur.pos()
|
||||||
|
Loading…
Reference in New Issue
Block a user