]> git.lyx.org Git - features.git/commitdiff
fix off-by-two drawing error
authorAndré Pönitz <poenitz@gmx.net>
Sun, 24 Aug 2008 21:16:09 +0000 (21:16 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Sun, 24 Aug 2008 21:16:09 +0000 (21:16 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26232 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathBox.cpp

index 603ea05b380dae32128e51a5fd4a8abaf35df39f..806c20a70c70adaa6c2bf416f505d074443ae235 100644 (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
 }