]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathRoot.cpp
Re-implement math markers logic.
[features.git] / src / mathed / InsetMathRoot.cpp
index 8c4d1fa5ac784b94403c964b20bb729ee0014d74..f8f36d8214a09c49e71d9246ea01d7e37693fe85 100644 (file)
@@ -48,7 +48,6 @@ void InsetMathRoot::metrics(MetricsInfo & mi, Dimension & dim) const
        dim.asc = max(dim0.ascent()  + 5, dim1.ascent())  + 2;
        dim.des = max(dim0.descent() - 5, dim1.descent()) + 2;
        dim.wid = dim0.width() + dim1.width() + 10;
-       metricsMarkers(mi, dim);
 }
 
 
@@ -73,7 +72,6 @@ void InsetMathRoot::draw(PainterInfo & pi, int x, int y) const
        xp[2] = x + w - 2;         yp[2] = y + (d - a)/2 + 2;
        xp[3] = x + w - 5;         yp[3] = y + (d - a)/2 + 4;
        pi.pain.lines(xp, yp, 4, pi.base.font.color());
-       drawMarkers(pi, x, y);
 }