From: fred Date: Tue, 26 Mar 2002 22:46:38 +0000 (+0000) Subject: lilypond-1.3.31 X-Git-Tag: release/1.5.59~1845 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4f7ebe00478390280b5e93ae5d6bdce59efd481d;p=lilypond.git lilypond-1.3.31 --- diff --git a/lily/tie.cc b/lily/tie.cc index 7f1befbf66..87de462d73 100644 --- a/lily/tie.cc +++ b/lily/tie.cc @@ -232,7 +232,8 @@ Tie::get_curve () const Real ry = rint (y/staff_space) * staff_space; Real diff = ry - y; Real newy = y; - if (fabs (diff) < paper_l ()->get_var ("tie_staffline_clearance")) + if (fabs (y) <= 2.0 + && fabs (diff) < paper_l ()->get_var ("tie_staffline_clearance")) { newy = ry - 0.5 * staff_space * sign (diff) ; }