mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
Fix silly error outputting math sizes. Fixes bug #10129.
(cherry picked from commit bb5c760b37
)
This commit is contained in:
parent
7497435a01
commit
de19f69402
@ -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");
|
||||
}
|
||||
|
||||
|
||||
|
@ -191,6 +191,7 @@ What's new
|
||||
|
||||
* LYXHTML
|
||||
|
||||
- Fix output of math sizes.
|
||||
|
||||
|
||||
* TEX2LYX
|
||||
|
Loading…
Reference in New Issue
Block a user