fix off-by-two drawing error

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26232 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2008-08-24 21:16:09 +00:00
parent a60eee1daf
commit 68c1719929

View File

@ -99,7 +99,7 @@ void InsetMathFBox::metrics(MetricsInfo & mi, Dimension & dim) const
{
FontSetChanger dummy(mi.base, "textnormal");
cell(0).metrics(mi, dim);
metricsMarkers(dim, 3); // 1 pixel space, 1 frame, 1 space
metricsMarkers2(dim, 3); // 1 pixel space, 1 frame, 1 space
}