]> git.donarmstrong.com Git - lilypond.git/commitdiff
(finalize): new function. Reset right
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 5 Aug 2005 13:53:18 +0000 (13:53 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 5 Aug 2005 13:53:18 +0000 (13:53 +0000)
bounds to currentCommandColumn for the last step.
(start_translation_timestep): if tupletFullLength is set, set
bound to Paper Column

Documentation/topdocs/NEWS.tely
lily/tuplet-engraver.cc

index 64158ca328d0b6a0f823be6bae635232b4e75a81..cbf415a36b7c64ca0761b4099de9c781da88c602 100644 (file)
@@ -37,7 +37,7 @@ See user manual, \NAME\
 Tuplets can be made to reach the next non-tuplet note by setting the
 @code{tupletFullLength}  property,
 
-@lilypond[fragment]
+@lilypond[fragment,relative=2]
 \new Voice \with {
   \remove  Forbid_line_break_engraver
   allowBeamBreak = ##t
@@ -49,6 +49,7 @@ Tuplets can be made to reach the next non-tuplet note by setting the
 }
 @end lilypond  
 
+This feature was sponsored by Trevor Baca. 
 
 @item
 When @code{strict-note-spacing} is set, note are spaced without regard
index f5628975eed5510a48277e5d804d06fe1975d5b5..0ab4af7724406d0456291b317337b8593faa7b82 100644 (file)
@@ -119,13 +119,13 @@ Tuplet_engraver::start_translation_timestep ()
 {
   Moment now = now_mom ();
 
+  last_tuplets_.clear ();
   if (tuplets_.is_empty())
     return;
 
   Moment tsdmom = robust_scm2moment (get_property ("tupletSpannerDuration"), Moment (0));
   bool full_length = to_boolean (get_property ("tupletFullLength"));
 
-  last_tuplets_.clear ();
   for (int i = tuplets_.size (); i--;)
     {
       Rational tsd = tsdmom.main_part_;