]> 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 69ff5aa98f358b7ab90b80c504b13e80ff628af3..7e89c8f3f3a2c3f886eae54607c2cbe0d6bdd0ff 100644 (file)
@@ -25,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));
 }
@@ -47,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;
 }
 
 
@@ -63,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);
 }