From: Jürgen Reuter Date: Sat, 20 Sep 2014 04:51:08 +0000 (+0200) Subject: Fixes bog in Lookup::bezier_sandwich, tethering sandwiches at their extremal ends... X-Git-Tag: release/2.19.15-1~26 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=595c8323ce55fac6736391f5e060a57efdbeeb4b;p=lilypond.git Fixes bog in Lookup::bezier_sandwich, tethering sandwiches at their extremal ends with a line (issue 4087) --- diff --git a/lily/lookup.cc b/lily/lookup.cc index 344d42c906..306d04e9be 100644 --- a/lily/lookup.cc +++ b/lily/lookup.cc @@ -466,6 +466,9 @@ Lookup::bezier_sandwich (Bezier top_curve, Bezier bottom_curve, Real thickness) scm_from_double (top_curve.control_[2][Y_AXIS]), scm_from_double (top_curve.control_[3][X_AXIS]), scm_from_double (top_curve.control_[3][Y_AXIS]), + ly_symbol2scm ("lineto"), + scm_from_double (bottom_curve.control_[3][X_AXIS]), + scm_from_double (bottom_curve.control_[3][Y_AXIS]), ly_symbol2scm ("curveto"), scm_from_double (bottom_curve.control_[2][X_AXIS]), scm_from_double (bottom_curve.control_[2][Y_AXIS]),