X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathColor.cpp;h=6cb996013b13d10682c788733f0edba5d66ad9f7;hb=c8230ab0d0a919530c43c29395f4d9961498bf15;hp=966fe5e99adf1e851b63a5f5124a2f87542d41e5;hpb=9a9a6a8c8f12cb8b0e713a9a1ed3c5763fa25c66;p=lyx.git diff --git a/src/mathed/InsetMathColor.cpp b/src/mathed/InsetMathColor.cpp index 966fe5e99a..6cb996013b 100644 --- a/src/mathed/InsetMathColor.cpp +++ b/src/mathed/InsetMathColor.cpp @@ -49,7 +49,6 @@ Inset * InsetMathColor::clone() const void InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const { cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } @@ -57,10 +56,8 @@ void InsetMathColor::draw(PainterInfo & pi, int x, int y) const { ColorCode origcol = pi.base.font.color(); pi.base.font.setColor(lcolor.getFromLaTeXName(to_utf8(color_))); - cell(0).draw(pi, x + 1, y); + cell(0).draw(pi, x, y); pi.base.font.setColor(origcol); - drawMarkers(pi, x, y); - setPosCache(pi, x, y); }