]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_braceinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_braceinset.C
index aa7b914896c9205f76f3804d446df960101fa011..fe63f1b8b90989af49ed2b57a3451a7384b992b5 100644 (file)
@@ -33,7 +33,7 @@ MathBraceInset::MathBraceInset(MathArray const & ar)
 }
 
 
-auto_ptr<InsetBase> MathBraceInset::clone() const
+auto_ptr<InsetBase> MathBraceInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathBraceInset(*this));
 }
@@ -44,11 +44,11 @@ void MathBraceInset::metrics(MetricsInfo & mi, Dimension & dim) const
        cell(0).metrics(mi);
        Dimension t;
        mathed_char_dim(mi.base.font, '{', t);
-       wid_ = t.wid;
-       dim_.asc = max(cell(0).ascent(), t.asc);
-       dim_.des = max(cell(0).descent(), t.des);
-       dim_.wid = cell(0).width() + 2 * wid_;
-       dim = dim_;
+       dim.asc = max(cell(0).ascent(), t.asc);
+       dim.des = max(cell(0).descent(), t.des);
+       dim.wid = cell(0).width() + 2 * t.wid;
+       metricsMarkers(dim);
+       dim_ = dim;
 }
 
 
@@ -56,9 +56,12 @@ void MathBraceInset::draw(PainterInfo & pi, int x, int y) const
 {
        LyXFont font = pi.base.font;
        font.setColor(LColor::latex);
+       Dimension t;
+       mathed_char_dim(font, '{', t);
        drawChar(pi, font, x, y, '{');
-       cell(0).draw(pi, x + wid_, y);
-       drawChar(pi, font, x + dim_.width() - wid_, y, '}');
+       cell(0).draw(pi, x + t.wid, y);
+       drawChar(pi, font, x + t.wid + cell(0).width(), y, '}');
+       drawMarkers(pi, x, y);
 }