]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSize.cpp
Revert "DocBook: make openParTag/closeTag use paragraphs instead of layouts."
[lyx.git] / src / mathed / InsetMathSize.cpp
index 534010b688d287d4d5326dde6f16736e0a8bb14a..dff61da87b54c49502f6862e76b1a467df562823 100644 (file)
@@ -47,7 +47,6 @@ 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);
 }
 
 
@@ -55,8 +54,7 @@ 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);
 }
 
 
@@ -68,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);