X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_amsarrayinset.C;h=6fdca3e708c506c3b696f7143b19f6df61e091b0;hb=edbef46cd7865dab72ab6b503d62e2492479d297;hp=bc89a191dcf9ce68a6c6720ae34f17c233481222;hpb=1f9e9cf5173fa1fbafdff5f21080e5194b05818b;p=lyx.git diff --git a/src/mathed/math_amsarrayinset.C b/src/mathed/math_amsarrayinset.C index bc89a191dc..6fdca3e708 100644 --- a/src/mathed/math_amsarrayinset.C +++ b/src/mathed/math_amsarrayinset.C @@ -11,12 +11,12 @@ #include #include "math_amsarrayinset.h" +#include "math_data.h" #include "math_mathmlstream.h" -#include "metricsinfo.h" #include "math_streamstr.h" #include "math_support.h" -#include "Lsstream.h" +using std::string; using std::auto_ptr; @@ -73,9 +73,9 @@ void MathAMSArrayInset::metrics(MetricsInfo & mi, Dimension & dim) const MetricsInfo m = mi; if (m.base.style == LM_ST_DISPLAY) m.base.style = LM_ST_TEXT; - MathGridInset::metrics(m); - dim_.wid += 12; - dim = dim_; + MathGridInset::metrics(m, dim); + dim.wid += 12; + dim_ = dim; } @@ -85,6 +85,7 @@ void MathAMSArrayInset::draw(PainterInfo & pi, int x, int y) const int const yy = y - dim_.ascent(); mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), name_left()); mathed_draw_deco(pi, x + dim_.width() - 6, yy, 5, dim_.height(), name_right()); + setPosCache(pi, x, y); }