X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.cpp;h=dff61da87b54c49502f6862e76b1a467df562823;hb=21c92c8a129b5f3ff56de33bf2941a25967cffbb;hp=ef48d0b52542718bd601764d3d00e2617f3094ac;hpb=a9eb87a89d2ba1a492f2a01fc92e360e056bf2d6;p=lyx.git diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index ef48d0b525..dff61da87b 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.cpp @@ -44,17 +44,17 @@ Inset * InsetMathSize::clone() const void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const { + Changer dummy2 = mi.base.changeEnsureMath(); Changer dummy = mi.base.font.changeStyle(style_); cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } void InsetMathSize::draw(PainterInfo & pi, int x, int y) const { + Changer dummy2 = pi.base.changeEnsureMath(); Changer dummy = pi.base.font.changeStyle(style_); - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + cell(0).draw(pi, x, y); } @@ -66,12 +66,12 @@ void InsetMathSize::write(WriteStream & os) const // From the MathML documentation: -// MathML uses two attributes, displaystyle and scriptlevel, to control -// orthogonal presentation features that TeX encodes into one "style" -// attribute with values \displaystyle, \textstyle, \scriptstyle, and -// \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel -// for those TeX styles would be "true" and "0", "false" and "0", "false" and "1", -// and "false" and "2", respectively. +// MathML uses two attributes, displaystyle and scriptlevel, to control +// orthogonal presentation features that TeX encodes into one "style" +// attribute with values \displaystyle, \textstyle, \scriptstyle, and +// \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel +// for those TeX styles would be "true" and "0", "false" and "0", "false" and "1", +// and "false" and "2", respectively. void InsetMathSize::mathmlize(MathStream & ms) const { string const & name = to_utf8(key_->name);