mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
(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:
parent
171d8796c7
commit
5e45378782
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user