]> git.lyx.org Git - features.git/commitdiff
(Michael Schmitt with Andr��'s blessing ;-) Make CTRL-Pos1/End behaviour a
authorAngus Leeming <leeming@lyx.org>
Mon, 13 Jan 2003 21:51:13 +0000 (21:51 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 13 Jan 2003 21:51:13 +0000 (21:51 +0000)
little bit more intuitive.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5946 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/formulabase.C

index b2197fd84e41a2f5037d25e32e58b87fb1c3c4a3..2c02539e09b5a44345cadbc179699fe9f0fa3435 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-13  Michael Schmitt <Michael.Schmitt@teststep.org>
+
+       * formulabse.C (localDispatch): make CTRL-Pos1/End behave a little
+       bit more intuitive. (Patch suggested by André.)
+
 2003-01-07  João Luis Meloni Assirati <assirati@fma.if.usp.br>
 
        * math_hullinset.C: fix numbering problem of AMS gather and
index be8ee3c160fb0af4e107ff408edb34f15fe99faa..1245cd44f3cd0cd95bb903dc810fcfd4183c511c 100644 (file)
@@ -536,7 +536,7 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
        case LFUN_PRIOR:
        case LFUN_BEGINNINGBUFSEL:
        case LFUN_BEGINNINGBUF:
-               result = FINISHED_UP;
+               result = FINISHED;
                updateLocal(bv, false);
                break;
 
@@ -544,7 +544,7 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
        case LFUN_NEXT:
        case LFUN_ENDBUFSEL:
        case LFUN_ENDBUF:
-               result = FINISHED_DOWN;
+               result = FINISHED_RIGHT;
                updateLocal(bv, false);
                break;