]> git.lyx.org Git - features.git/commitdiff
Fix #624
authorAndré Pönitz <poenitz@gmx.net>
Thu, 12 Aug 2004 20:52:43 +0000 (20:52 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Thu, 12 Aug 2004 20:52:43 +0000 (20:52 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8888 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_hullinset.C

index 72a3c325250c7965c2af9444a571ff2e3413cfbd..ec3aa2c02059b8f86bfe1cede9db1db97da86fd2 100644 (file)
@@ -903,12 +903,12 @@ void MathHullInset::priv_dispatch(LCursor & cur, FuncRequest & cmd)
                break;
 
        case LFUN_BREAKLINE:
+               // some magic for the common case
                if (type_ == "simple" || type_ == "equation") {
                        recordUndoInset(cur);
                        mutate("eqnarray");
                        cur.idx() = 0;
                        cur.pos() = cur.lastpos();
-                       break;
                }
                MathGridInset::priv_dispatch(cur, cmd);
                break;