From b32725cb1a16e45c88e935d0253b6146ce3610f6 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Fri, 5 Aug 2005 13:53:18 +0000 Subject: [PATCH] (finalize): new function. Reset right bounds to currentCommandColumn for the last step. (start_translation_timestep): if tupletFullLength is set, set bound to Paper Column --- Documentation/topdocs/NEWS.tely | 3 ++- lily/tuplet-engraver.cc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Documentation/topdocs/NEWS.tely b/Documentation/topdocs/NEWS.tely index 64158ca328..cbf415a36b 100644 --- a/Documentation/topdocs/NEWS.tely +++ b/Documentation/topdocs/NEWS.tely @@ -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 diff --git a/lily/tuplet-engraver.cc b/lily/tuplet-engraver.cc index f5628975ee..0ab4af7724 100644 --- a/lily/tuplet-engraver.cc +++ b/lily/tuplet-engraver.cc @@ -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_; -- 2.39.5