X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathXArrow.cpp;h=30cce8a8eb14bc4b95f58b085822acd2e6f98b71;hb=f1dd80f464b46f6112f6c9a64a70dd3da76cbe7f;hp=d2121d6dfef331cc1ed577e12ffedbab6b16201f;hpb=eadc55b8b38a489202e2e168521578dae119fd59;p=lyx.git diff --git a/src/mathed/InsetMathXArrow.cpp b/src/mathed/InsetMathXArrow.cpp index d2121d6dfe..30cce8a8eb 100644 --- a/src/mathed/InsetMathXArrow.cpp +++ b/src/mathed/InsetMathXArrow.cpp @@ -52,7 +52,6 @@ void InsetMathXArrow::metrics(MetricsInfo & mi, Dimension & dim) const dim.wid = max(dim0.width(), dim1.width()) + 10; dim.asc = dim0.height() + 10; dim.des = dim1.height(); - metricsMarkers(mi, dim); } @@ -66,8 +65,7 @@ void InsetMathXArrow::draw(PainterInfo & pi, int x, int y) const cell(0).draw(pi, x + dim.width()/2 - dim0.width()/2, y - 10); Dimension const & dim1 = cell(1).dimension(*pi.base.bv); cell(1).draw(pi, x + dim.width()/2 - dim1.width()/2, y + dim1.height()); - mathed_draw_deco(pi, x + 1, y - 7, dim.wid - 2, 5, name_); - drawMarkers(pi, x, y); + mathed_draw_deco(pi, x, y - 7, dim.wid, 5, name_); }