X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FMathFactory.cpp;h=bf468e8616b792dd665ccff1829874ab972825a9;hb=d243e53f54e861c90ce7135f3d1a8d68d6202555;hp=3bea8e9335bda59dd577944328aab3c68f2a0db3;hpb=efaae780dbbe3685e26e040ed4255e5abf268106;p=lyx.git diff --git a/src/mathed/MathFactory.cpp b/src/mathed/MathFactory.cpp index 3bea8e9335..bf468e8616 100644 --- a/src/mathed/MathFactory.cpp +++ b/src/mathed/MathFactory.cpp @@ -539,11 +539,11 @@ MathAtom createInsetMath(docstring const & s, Buffer * buf) if (s == "sideset") return MathAtom(new InsetMathSideset(buf, true, true)); // The following 3 string values are only for math toolbar use, no LaTeX names - if (s == "sideset1") + if (s == "sidesetr") return MathAtom(new InsetMathSideset(buf, false, true)); - if (s == "sideset2") + if (s == "sidesetl") return MathAtom(new InsetMathSideset(buf, true, false)); - if (s == "sideset3") + if (s == "sidesetn") return MathAtom(new InsetMathSideset(buf, false, false)); if (isSpecialChar(s)) return MathAtom(new InsetMathSpecialChar(s));