From 1f06f5d705e4d20151fe5d3bb43984afdcda861b Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 21:27:56 +0000 Subject: [PATCH] lilypond-1.0.16 --- NEWS | 15 +++++++++++++++ lily/slur-engraver.cc | 8 ++++---- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 104db47365..4473e4ea12 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +pl 16 + - read property ydirection and tieYDirection for tie direction. + - bf: slur over rest. + - bf: include path + - part of jcn2 + - configure --enable-guile + +pl 15.jcn1 + - autoconf on mf,mfont mp,mpost + +pl 15.am + - Lots of patches from *Adrian* *Mariano*! + +********** + pl 15 pl 14.hwn1 - \lyrics iso \lyric (mudela 1.0.7) diff --git a/lily/slur-engraver.cc b/lily/slur-engraver.cc index 5ccf0386f6..768d8c42b1 100644 --- a/lily/slur-engraver.cc +++ b/lily/slur-engraver.cc @@ -98,12 +98,12 @@ Slur_engraver::do_pre_move_processing() { Scalar dir (get_property ("slurydirection")); Scalar dir2 (get_property ("ydirection")); - if (!dir.length_i () && dir2.length_i ()) + if (dir.length_i ()) { - dir_ = (Direction) int(dir2); + dir_ = (Direction) sign (int(dir)); } - else if (dir.length_i ()) - dir_ = (Direction) int (dir); + else if (dir2.length_i ()) + dir_ = (Direction) sign (int (dir2)); for (int i = 0; i < end_slur_l_arr_.size(); i++) { -- 2.39.5