]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.0.16
authorfred <fred>
Tue, 26 Mar 2002 21:27:56 +0000 (21:27 +0000)
committerfred <fred>
Tue, 26 Mar 2002 21:27:56 +0000 (21:27 +0000)
NEWS
lily/slur-engraver.cc

diff --git a/NEWS b/NEWS
index 104db4736511d1d495c888e72b03fdf111c051d1..4473e4ea12588d4a6701e8127bfe863b0b23e072 100644 (file)
--- 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)
index 5ccf0386f6ea9b5a70fc84307930f69a4dcb8145..768d8c42b1ab936de68a0dd5294e6ab6733afc27 100644 (file)
@@ -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++)
     {