]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binominset.C
Andreas' patch to prevent crash on click on previewd inset
[lyx.git] / src / mathed / math_binominset.C
index b3707fd1a61da8d1a34e35c49b7c55464f211355..7e89c8f3f3a2c3f886eae54607c2cbe0d6bdd0ff 100644 (file)
@@ -11,6 +11,7 @@
 #include <config.h>
 
 #include "math_binominset.h"
+#include "math_data.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 
@@ -24,7 +25,7 @@ MathBinomInset::MathBinomInset(bool choose)
 {}
 
 
-auto_ptr<InsetBase> MathBinomInset::clone() const
+auto_ptr<InsetBase> MathBinomInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathBinomInset(*this));
 }
@@ -46,10 +47,11 @@ void MathBinomInset::metrics(MetricsInfo & mi, Dimension & dim) const
        ScriptChanger dummy(mi.base);
        cell(0).metrics(mi);
        cell(1).metrics(mi);
-       dim_.asc = cell(0).height() + 4 + 5;
-       dim_.des = cell(1).height() + 4 - 5;
-       dim_.wid = max(cell(0).width(), cell(1).width()) + 2 * dw() + 4;
-       dim = dim_;
+       dim.asc = cell(0).height() + 4 + 5;
+       dim.des = cell(1).height() + 4 - 5;
+       dim.wid = max(cell(0).width(), cell(1).width()) + 2 * dw() + 4;
+       metricsMarkers2(dim);
+       dim_ = dim;
 }
 
 
@@ -62,6 +64,7 @@ void MathBinomInset::draw(PainterInfo & pi, int x, int y) const
        mathed_draw_deco(pi, x, y - dim_.ascent(), dw(), dim_.height(), "(");
        mathed_draw_deco(pi, x + dim_.width() - dw(), y - dim_.ascent(),
                dw(), dim_.height(), ")");
+       drawMarkers2(pi, x, y);
 }