fix drawing glitch in MathMacroArg

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2743 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-09-12 13:43:59 +00:00
parent d9738adfd7
commit e7209bd562

View File

@ -43,7 +43,7 @@ void MathMacroArgument::metrics(MathStyles st) const
ascent_ = xcell(0).ascent();
descent_ = xcell(0).descent();
} else
mathed_string_dim(LM_TC_TEX, size(), str_, width_, ascent_, descent_);
mathed_string_dim(LM_TC_TEX, size(), str_, ascent_, descent_, width_);
}