X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathComment.cpp;h=ea502d1aa2ef1fd7a7ab504c3799f5dc49cc489e;hb=cdc847fd304019a19425a0d5d9d42a556a937097;hp=b8c157b2c2cff3e46d70f3b30399419af781eca4;hpb=f643ae700700cbd9aa0b1aca8155c6d7f2aee34d;p=lyx.git diff --git a/src/mathed/InsetMathComment.cpp b/src/mathed/InsetMathComment.cpp index b8c157b2c2..ea502d1aa2 100644 --- a/src/mathed/InsetMathComment.cpp +++ b/src/mathed/InsetMathComment.cpp @@ -50,14 +50,12 @@ Inset * InsetMathComment::clone() const void InsetMathComment::metrics(MetricsInfo & mi, Dimension & dim) const { cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } void InsetMathComment::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); }