Hello,
I just committed a fix to LyXText::cursorUp(). A "return false" was
missing. The fix is quite obvious (well, at least to me) but I wonder
why it was missing at the first place... Any idea someone?
It was missing also in cursorDown() last year but I've added the early
at that time.
Abdel.
Author: younes
Date: Mon Jan 1 17:00:27 2007
New Revision: 16460
URL: http://www.lyx.org/trac/changeset/16460
Log:
Fix cursor navigation with UP arrows. I don't know why this return was
not there at the first place.
Modified:
lyx-devel/trunk/src/text2.C
Modified: lyx-devel/trunk/src/text2.C
URL: http://www.lyx.org/trac/file/lyx-devel/trunk/src/text2.C?rev=16460
==============================================================================
--- lyx-devel/trunk/src/text2.C (original)
+++ lyx-devel/trunk/src/text2.C Mon Jan 1 17:00:27 2007
@@ -1010,6 +1010,7 @@
++dummy.pos();
cur.bv().checkDepm(dummy, old);
+ return false;
}
bool updateNeeded = false;