]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_factory.C
Make MathBigInset working
[features.git] / src / mathed / math_factory.C
index ac97f36154871f51e6712d61fae3e5d4d41d44df..d55fc094db0997fe82e6664a67a7bf4295e75fc9 100644 (file)
@@ -276,6 +276,10 @@ MathAtom createMathInset(string const & s)
                        return MathAtom(new MathFontOldInset(l));
                if (inset == "matrix")
                        return MathAtom(new MathAMSArrayInset(s));
+               if (inset == "big")
+                       // we can't create a MathBigInset, since the argument
+                       // is missing.
+                       return MathAtom(new MathUnknownInset(s));
                return MathAtom(new MathSymbolInset(l));
        }