]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
Fix math cursor positioning bug
[lyx.git] / src / mathed / math_amsarrayinset.C
index 561faa224871b1071f0dd979af68d64d9a6fdfdf..4acba92900884b75e8a82b059856ee03a72d84ee 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <config.h>
 
+#include "LaTeXFeatures.h"
 #include "math_amsarrayinset.h"
 #include "math_data.h"
 #include "math_mathmlstream.h"
@@ -30,7 +31,7 @@ MathAMSArrayInset::MathAMSArrayInset(string const & name)
 {}
 
 
-auto_ptr<InsetBase> MathAMSArrayInset::clone() const
+auto_ptr<InsetBase> MathAMSArrayInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathAMSArrayInset(*this));
 }
@@ -85,6 +86,7 @@ void MathAMSArrayInset::draw(PainterInfo & pi, int x, int y) const
        int const yy = y - dim_.ascent();
        mathed_draw_deco(pi, x + 1, yy, 5, dim_.height(), name_left());
        mathed_draw_deco(pi, x + dim_.width() - 6, yy, 5, dim_.height(), name_right());
+       setPosCache(pi, x, y);
 }
 
 
@@ -102,3 +104,10 @@ void MathAMSArrayInset::normalize(NormalStream & os) const
        MathGridInset::normalize(os);
        os << ']';
 }
+
+
+void MathAMSArrayInset::validate(LaTeXFeatures & features) const
+{
+       features.require("amsmath");
+       MathGridInset::validate(features);
+}