and this...

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8639 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2004-04-08 15:57:32 +00:00
parent fe92f675ae
commit 58ff84f508

View File

@ -41,7 +41,7 @@ void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
{
int m = x + pi.width / 2;
int m = x + width() / 2;
int yo = y + cell(1).descent() + cell(0).ascent() + 1;
cell(1).draw(pi, m - cell(1).width() / 2, y);
FracChanger dummy(pi.base);