]> git.lyx.org Git - features.git/commitdiff
Fix math insert
authorDekel Tsur <dekelts@tau.ac.il>
Sat, 7 Jul 2001 09:19:51 +0000 (09:19 +0000)
committerDekel Tsur <dekelts@tau.ac.il>
Sat, 7 Jul 2001 09:19:51 +0000 (09:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2199 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/ChangeLog
src/mathed/formulabase.C

index 92377355450297df6f27b84e6ebf7a0e4e4fda28..98823926f2f6a988ee745d68df5c5010d51d2d9a 100644 (file)
@@ -1,3 +1,7 @@
+2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
+
+       * formulabase.C (mathDispatchInsertMath): Create an inline formula.
+
 2001-07-04 André Pönitz  <poenitz@htwm.de>
 
        * math_parser.C: fix reading of "unusual" alpha chars
index f78222340d6d9ee3bff0417f6cf09caad16d6fa5..66a7146698967e5eec5853ee56f1e4a57f01574e 100644 (file)
@@ -1,4 +1,4 @@
-/*
+ /*
 *  File:        formula.C
 *  Purpose:     Implementation of formula inset
 *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
@@ -1158,7 +1158,7 @@ void mathDispatchInsertMath(BufferView * bv, string const & arg)
                        InsetFormula * f = new InsetFormula(arg);
                        openNewInset(bv, f);
                } else {
-                       return mathDispatchMathDisplay(bv, arg);
+                       return mathDispatchMathMode(bv, arg);
                }
        }
 }