]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_frameboxinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_frameboxinset.C
index d1cf3afb178a78f5402f455f5ad1e4ba96e2a1bb..bb6badd6bb7590b1404052c1f5fa8de8f591ccd3 100644 (file)
@@ -25,7 +25,7 @@ MathFrameboxInset::MathFrameboxInset()
 {}
 
 
-auto_ptr<InsetBase> MathFrameboxInset::clone() const
+auto_ptr<InsetBase> MathFrameboxInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathFrameboxInset(*this));
 }
@@ -36,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;
 }
 
 
@@ -66,6 +66,7 @@ void MathFrameboxInset::draw(PainterInfo & pi, int x, int y) const
        x += w_ + 4;
 
        cell(2).draw(pi, x, y);
+       drawMarkers(pi, x, y);
 }