]> 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:50:36 +0000 (00:50 -0400)
(cherry picked from commit bb5c760b37cbc360a46c5cca83178c5b79c3b9b3)

src/mathed/InsetMathSize.cpp
status.22x

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");
 }
 
 
index 737b7850b1857c79f8a7faf130d5503013b09ae5..e68ecf9aefd79258faae55838a7a7a393ada9c1d 100644 (file)
@@ -72,6 +72,8 @@ What's new
 
 * LYXHTML
 
+- Fix output of math sizes (bug 10129).
+
 
 * TEX2LYX