]> git.lyx.org Git - features.git/commitdiff
Fix silly error outputting math sizes. Fixes bug #10129.
authorRichard Heck <rgheck@lyx.org>
Sat, 11 Jun 2016 04:48:55 +0000 (00:48 -0400)
committerRichard Heck <rgheck@lyx.org>
Sat, 11 Jun 2016 04:49:21 +0000 (00:49 -0400)
src/mathed/InsetMathSize.cpp

index dc79652fad105a311e99eafcfa531baaee9253ff..fc7c7bae9ff47629bbfa3fbdf746bc501c30436d 100644 (file)
@@ -83,8 +83,7 @@ void InsetMathSize::mathmlize(MathStream & ms) const
        stringstream attrs;
        attrs << "displaystyle='" << (dispstyle ? "true" : "false")
                << "' scriptlevel='" << scriptlevel << "'";
-       ms << MTag("mstyle", attrs.str()) << ">"
-          << cell(0) << ETag("mstyle");
+       ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle");
 }