Fix silly error outputting math sizes. Fixes bug #10129.

This commit is contained in:
Richard Heck 2016-06-11 00:48:55 -04:00
parent ab41c1d1ac
commit bb5c760b37

View 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");
}