From 78d61618c8216cb9199dd2be288afd0cedf15aaa Mon Sep 17 00:00:00 2001 From: Peter Chubb Date: Wed, 21 Jan 2015 08:18:19 +1100 Subject: [PATCH] Fix trill-span errors The last change introduced a bug: ac:twiddletime returns a moment, and it was changed to return a duration. This causes a lilypond error when using trillspan and articulate. --- ly/articulate.ly | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ly/articulate.ly b/ly/articulate.ly index 706c57c9ec..bbfea19a8f 100644 --- a/ly/articulate.ly +++ b/ly/articulate.ly @@ -347,11 +347,11 @@ (ly:music-property music 'elements))) (pre-t (if (pair? tr) (ly:music-property (car tr) 'twiddle) '())) - (hemisemidur (ly:make-duration 5 0 1/1)) + (hemisemimom (ly:make-moment 1/64)) (t (ac:targetTwiddleTime))) (if (ly:moment? pre-t) pre-t - hemisemidur))) + hemisemimom))) -- 2.39.2