From 4f7ebe00478390280b5e93ae5d6bdce59efd481d Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 22:46:38 +0000 Subject: [PATCH] lilypond-1.3.31 --- lily/tie.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) ; } -- 2.39.5