]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_frameboxinset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_frameboxinset.C
index f09c40c2c44484e5c75360115e2110dabae5e04b..ebeccae203bb32df318d420c0a2fa1ce51ac7cab 100644 (file)
 #include <config.h>
 
 #include "math_frameboxinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
+#include "math_support.h"
+#include "LColor.h"
 #include "frontends/Painter.h"
 
 using std::auto_ptr;
@@ -34,11 +36,11 @@ void MathFrameboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
        FontSetChanger dummy(mi.base, "textnormal");
        w_ = mathed_char_width(mi.base.font, '[');
        MathNestInset::metrics(mi);
-       dim_  = cell(0).dim();
-       dim_ += cell(1).dim();
-       dim_ += cell(2).dim();
-       metricsMarkers();
-       dim = dim_;
+       dim  = cell(0).dim();
+       dim += cell(1).dim();
+       dim += cell(2).dim();
+       metricsMarkers(dim);
+       dim_ = dim;
 }