From: Joe Neeman Date: Fri, 3 Aug 2007 23:12:31 +0000 (+1000) Subject: Fix 357 X-Git-Tag: release/2.11.29-1~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b105fc681f3e0b373c967217eb764cd23d60b7fc;p=lilypond.git Fix 357 Give dashed slurs a non-empty extent. --- diff --git a/lily/lookup.cc b/lily/lookup.cc index 61d6618659..fc6a2e896b 100644 --- a/lily/lookup.cc +++ b/lily/lookup.cc @@ -106,7 +106,7 @@ Lookup::dashed_slur (Bezier b, Real thick, Real dash_period, Real dash_fraction) ly_quote_scm (l), SCM_UNDEFINED)); - Box box (Interval (0, 0), Interval (0, 0)); + Box box (b.extent (X_AXIS), b.extent (Y_AXIS)); return Stencil (box, at); }