X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.cpp;h=18d0aaf95a9c4ab5167b672b63e821d67e937df0;hb=faeb1997932dd60909ebe7c7883a5c8fbfe81e8c;hp=dc79652fad105a311e99eafcfa531baaee9253ff;hpb=ff85a4902ec4fff1b3bf0dbc9c9c53b3e87563cf;p=lyx.git diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index dc79652fad..18d0aaf95a 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.cpp @@ -31,7 +31,8 @@ using namespace std; namespace lyx { InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l) - : InsetMathNest(buf, 1), key_(l), style_(Styles(convert(l->extra))) + : InsetMathNest(buf, 1), key_(l), + style_(MathStyle(convert(l->extra))) {} @@ -43,17 +44,17 @@ Inset * InsetMathSize::clone() const void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const { - StyleChanger dummy(mi.base, style_); + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.font.changeStyle(style_); cell(0).metrics(mi, dim); - metricsMarkers(dim); } void InsetMathSize::draw(PainterInfo & pi, int x, int y) const { - StyleChanger dummy(pi.base, style_); - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + Changer dummy2 = pi.base.changeEnsureMath(); + Changer dummy = pi.base.font.changeStyle(style_); + cell(0).draw(pi, x, y); } @@ -83,8 +84,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"); }