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

(cherry picked from commit bb5c760b37)
This commit is contained in:
Richard Heck 2016-06-11 00:48:55 -04:00
parent 425b7c9fbe
commit bb9e0e122a
2 changed files with 3 additions and 2 deletions

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

View File

@ -72,6 +72,8 @@ What's new
* LYXHTML
- Fix output of math sizes (bug 10129).
* TEX2LYX