From 5e453787829f69003434796fb60f63885ec02fbc Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Mon, 13 Jan 2003 21:51:13 +0000 Subject: [PATCH] =?utf8?q?(Michael=20Schmitt=20with=20Andr=EF=BF=BD?= =?utf8?q?=EF=BF=BD's=20blessing=20;-)=20Make=20CTRL-Pos1/End=20behaviour?= =?utf8?q?=20a=20little=20bit=20more=20intuitive.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5946 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/ChangeLog | 5 +++++ src/mathed/formulabase.C | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index b2197fd84e..2c02539e09 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,8 @@ +2003-01-13 Michael Schmitt + + * 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 * math_hullinset.C: fix numbering problem of AMS gather and diff --git a/src/mathed/formulabase.C b/src/mathed/formulabase.C index be8ee3c160..1245cd44f3 100644 --- a/src/mathed/formulabase.C +++ b/src/mathed/formulabase.C @@ -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; -- 2.39.2