]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathComment.cpp
Fix drawing of empty boxes
[lyx.git] / src / mathed / InsetMathComment.cpp
index ff91991aa86ff0755fb7cb470f0f28e734bbca91..ea502d1aa2ef1fd7a7ab504c3799f5dc49cc489e 100644 (file)
@@ -50,14 +50,12 @@ Inset * InsetMathComment::clone() const
 void InsetMathComment::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(0).metrics(mi, dim);
-       metricsMarkers(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);
 }