X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFont.cpp;h=987612361e788e547b3c7faa36f421ae578a2ccc;hb=25d64bf43aba78a1ed20c88dfdc4cac269b53985;hp=05f9e66e73b081b51fa5653343dfa75d8ff3abd9;hpb=02e82157ec583c3900e359de86be79fac6512387;p=lyx.git diff --git a/src/mathed/InsetMathFont.cpp b/src/mathed/InsetMathFont.cpp index 05f9e66e73..987612361e 100644 --- a/src/mathed/InsetMathFont.cpp +++ b/src/mathed/InsetMathFont.cpp @@ -86,15 +86,13 @@ void InsetMathFont::metrics(MetricsInfo & mi, Dimension & dim) const { Changer dummy = mi.base.changeFontSet(font()); cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } void InsetMathFont::draw(PainterInfo & pi, int x, int y) const { Changer dummy = pi.base.changeFontSet(font()); - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + cell(0).draw(pi, x, y); }