]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 268 (2).
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 29 May 2008 14:36:28 +0000 (11:36 -0300)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Thu, 29 May 2008 14:36:28 +0000 (11:36 -0300)
Add linethickness to extent in Lookup::slur().

lily/lookup.cc

index 0050002223848461c7adfed53f0f1ac5bf07cc6a..dfda5f73e4eab63d06a4bd454a953549a3690662 100644 (file)
@@ -404,6 +404,7 @@ Lookup::slur (Bezier curve, Real curvethick, Real linethick)
   b[X_AXIS].unite (back.extent (X_AXIS));
   b[Y_AXIS].unite (back.extent (Y_AXIS));
 
+  b.widen (0.5 * linethick, 0.5 * linethick);
   return Stencil (b, at);
 }