]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
small up/down tweaking
[lyx.git] / src / mathed / math_lefteqninset.C
index cec496f1afe1bd2a692856e366f1667c9bb6d9f2..17d64b2f6893e8c68776be2ed661fcfb25165894 100644 (file)
@@ -4,6 +4,7 @@
 
 #include "math_lefteqninset.h"
 #include "math_support.h"
+#include "support/LOstream.h"
 
 
 MathLefteqnInset::MathLefteqnInset()
@@ -23,13 +24,14 @@ void MathLefteqnInset::metrics(MathMetricsInfo & mi) const
        dim_.a = cell(0).ascent() + 2;
        dim_.d = cell(0).descent() + 2;
        dim_.w = 4;
+       metricsMarkers2();
 }
 
 
-void MathLefteqnInset::draw(MathPainterInfo & pain, int x, int y) const
+void MathLefteqnInset::draw(MathPainterInfo & pi, int x, int y) const
 {
-       cell(0).draw(pain, x + 2, y);
-       //mathed_draw_framebox(pain, x, y, this);
+       cell(0).draw(pi, x + 2, y);
+       drawMarkers2(pi, x, y);
 }
 
 
@@ -37,3 +39,9 @@ string MathLefteqnInset::name() const
 {
        return "lefteqn";
 }
+
+
+void MathLefteqnInset::infoize(std::ostream & os) const
+{
+       os << "Lefteqn ";
+}