mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
Fix silly error outputting math sizes. Fixes bug #10129.
(cherry picked from commit bb5c760b37
)
This commit is contained in:
parent
425b7c9fbe
commit
bb9e0e122a
@ -83,8 +83,7 @@ void InsetMathSize::mathmlize(MathStream & ms) const
|
|||||||
stringstream attrs;
|
stringstream attrs;
|
||||||
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
|
attrs << "displaystyle='" << (dispstyle ? "true" : "false")
|
||||||
<< "' scriptlevel='" << scriptlevel << "'";
|
<< "' scriptlevel='" << scriptlevel << "'";
|
||||||
ms << MTag("mstyle", attrs.str()) << ">"
|
ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle");
|
||||||
<< cell(0) << ETag("mstyle");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,6 +72,8 @@ What's new
|
|||||||
|
|
||||||
* LYXHTML
|
* LYXHTML
|
||||||
|
|
||||||
|
- Fix output of math sizes (bug 10129).
|
||||||
|
|
||||||
|
|
||||||
* TEX2LYX
|
* TEX2LYX
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user