X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftie.cc;h=4f28e224642561852e7654add8dd93dc81a8a056;hb=0358e5f9f5e937ee39ce35c60da2283858b60cfa;hp=3f9037d57798a8f0eba8734b0586cf8cc4922745;hpb=d7abb64257a4fd5f51390e2c46493e8d0ee2e1f6;p=lilypond.git diff --git a/lily/tie.cc b/lily/tie.cc index 3f9037d577..4f28e22464 100644 --- a/lily/tie.cc +++ b/lily/tie.cc @@ -332,9 +332,11 @@ Tie::print (SCM smob) if (!scm_is_pair (cp)) return Stencil ().smobbed_copy (); - Real thick - = Staff_symbol_referencer::line_thickness (me) - * robust_scm2double (me->get_property ("thickness"), 1); + + Real staff_thick = Staff_symbol_referencer::line_thickness (me); + Real base_thick = robust_scm2double (me->get_property ("thickness"), 1); + Real thick = base_thick * staff_thick; + Bezier b; int i = 0; @@ -344,7 +346,9 @@ Tie::print (SCM smob) i++; } - Stencil a = Lookup::slur (b, get_grob_direction (me) * thick, thick); + Stencil a = Lookup::slur (b, + get_grob_direction (me) * staff_thick, + thick); return a.smobbed_copy (); }