From: Thibaut Cuvelier Date: Fri, 2 Sep 2022 00:00:12 +0000 (+0200) Subject: MathML: amend 26300c565f as discussed in bug 12513 X-Git-Tag: 2.4-beta2~486 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0bda6950e4578febfd379bd8f44efe7787f26988;p=lyx.git MathML: amend 26300c565f as discussed in bug 12513 Contributed by lynx --- diff --git a/src/mathed/InsetMathFrac.cpp b/src/mathed/InsetMathFrac.cpp index 3ad0dfe188..2431f68bb5 100644 --- a/src/mathed/InsetMathFrac.cpp +++ b/src/mathed/InsetMathFrac.cpp @@ -546,13 +546,11 @@ void InsetMathFrac::mathmlize(MathMLStream & ms) const if (nargs() == 2) { ms << MTag("mrow"); ms << cell(0); - SetMode textmode(ms, true); ms << MTagInline("mstyle mathvariant='normal'"); ms << cell(1); ms << ETagInline("mstyle"); ms << ETag("mrow"); } else { - SetMode textmode(ms, true); ms << MTag("mstyle mathvariant='normal'"); ms << cell(0); ms << ETag("mstyle");