X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathClass.cpp;h=2327cbe76d4e364276e2b2e2ee535bbaa6a66fef;hb=a48581f48c93b3981ffd3e058f57e3ed95b53641;hp=0237f250d054ff192383758ef9b3af585b6b97f3;hpb=9a9a6a8c8f12cb8b0e713a9a1ed3c5763fa25c66;p=lyx.git diff --git a/src/mathed/InsetMathClass.cpp b/src/mathed/InsetMathClass.cpp index 0237f250d0..2327cbe76d 100644 --- a/src/mathed/InsetMathClass.cpp +++ b/src/mathed/InsetMathClass.cpp @@ -31,14 +31,12 @@ Inset * InsetMathClass::clone() const void InsetMathClass::metrics(MetricsInfo & mi, Dimension & dim) const { cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } void InsetMathClass::draw(PainterInfo & pi, int x, int y) const { - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + cell(0).draw(pi, x, y); }