]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.C
oh well
[lyx.git] / src / mathed / math_stackrelinset.C
index 75ccb8710aec5892bf07e114eb7235e2940f4663..73500944eb02a6cb3b29f791868372d2b8cbea67 100644 (file)
@@ -7,12 +7,15 @@
 #include "math_support.h"
 
 
+using std::max;
+
+
 MathStackrelInset::MathStackrelInset()
 {}
 
 
 MathInset * MathStackrelInset::clone() const
-{   
+{
        return new MathStackrelInset(*this);
 }
 
@@ -23,7 +26,7 @@ void MathStackrelInset::metrics(MathMetricsInfo const & mi) const
        smallerStyleFrac(m);
        xcell(0).metrics(m);
        xcell(1).metrics(mi);
-       width_   = std::max(xcell(0).width(), xcell(1).width()) + 4; 
+       width_   = max(xcell(0).width(), xcell(1).width()) + 4;
        ascent_  = xcell(1).ascent() + xcell(0).height() + 4;
        descent_ = xcell(1).descent();
 }
@@ -31,8 +34,9 @@ void MathStackrelInset::metrics(MathMetricsInfo const & mi) const
 
 void MathStackrelInset::draw(Painter & pain, int x, int y) const
 {
-       int m = x + width() / 2;
-       xcell(0).draw(pain, m - xcell(0).width() / 2, y - xcell(0).height() - 4);
+       int m  = x + width() / 2;
+       int yo = y - xcell(1).ascent() - xcell(0).descent() - 1;
+       xcell(0).draw(pain, m - xcell(0).width() / 2, yo);
        xcell(1).draw(pain, m - xcell(1).width() / 2, y);
 }