mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix silly error outputting math sizes. Fixes bug #10129.
This commit is contained in:
parent
ab41c1d1ac
commit
bb5c760b37
@ -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");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user