more trivial tweaks to mathed bindings

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5380 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-10-11 09:52:50 +00:00
parent c3c1fb8c9c
commit f789d1a4be
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-10-10 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* formulabase.C (localDispatch): make LFUN_WORDLEFTSEL and
LFUN_WORDRIGHTSEL coherent with their non-SEL counterparts
2002-09-24 Lars Gullik Bjønnes <larsbj@gullik.net>
* Makefile.am (INCLUDES): loose SIGC_INCLUDES

View File

@ -432,7 +432,6 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
updateLocal(bv, true);
break;
case LFUN_WORDRIGHTSEL:
case LFUN_RIGHTSEL:
sel = true; // fall through...
case LFUN_RIGHT:
@ -444,7 +443,6 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
//bv->owner()->message(mathcursor->info());
break;
case LFUN_WORDLEFTSEL:
case LFUN_LEFTSEL:
sel = true; // fall through
case LFUN_LEFT:
@ -473,6 +471,7 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
break;
case LFUN_HOMESEL:
case LFUN_WORDLEFTSEL:
sel = true; // fall through
case LFUN_HOME:
case LFUN_WORDLEFT:
@ -481,6 +480,7 @@ Inset::RESULT InsetFormulaBase::localDispatch(FuncRequest const & cmd)
break;
case LFUN_ENDSEL:
case LFUN_WORDRIGHTSEL:
sel = true; // fall through
case LFUN_END:
case LFUN_WORDRIGHT: