(Michael Schmitt with Andr��'s blessing ;-) Make CTRL-Pos1/End behaviour a

little bit more intuitive.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5946 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-01-13 21:51:13 +00:00
parent 171d8796c7
commit 5e45378782
2 changed files with 7 additions and 2 deletions

View 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

View 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;