]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathSqrt.cpp
Re-implement math markers logic.
[features.git] / src / mathed / InsetMathSqrt.cpp
index 1f58dce4dbf979f595412bcc9a080f81a3a74260..4505d705671056901cb8faf8fed407edc1d03ada 100644 (file)
@@ -42,26 +42,24 @@ void InsetMathSqrt::metrics(MetricsInfo & mi, Dimension & dim) const
        dim.asc += 4;
        dim.des += 2;
        dim.wid += 12;
-       metricsMarkers(mi, dim);
 }
 
 
 void InsetMathSqrt::draw(PainterInfo & pi, int x, int y) const
 {
        Changer dummy = pi.base.changeEnsureMath();
-       cell(0).draw(pi, x + 10, y);
+       cell(0).draw(pi, x + 9, y);
        Dimension const dim = dimension(*pi.base.bv);
        int const a = dim.ascent();
        int const d = dim.descent();
        int xp[3];
        int yp[3];
        pi.pain.line(x + dim.width(), y - a + 1,
-               x + 8, y - a + 1, pi.base.font.color());
-       xp[0] = x + 8;            yp[0] = y - a + 1;
-       xp[1] = x + 5;            yp[1] = y + d - 1;
+               x + 7, y - a + 1, pi.base.font.color());
+       xp[0] = x + 7;            yp[0] = y - a + 1;
+       xp[1] = x + 4;            yp[1] = y + d - 1;
        xp[2] = x;                yp[2] = y + (d - a)/2;
        pi.pain.lines(xp, yp, 3, pi.base.font.color());
-       drawMarkers(pi, x, y);
 }