From: David Kastrup Date: Tue, 16 Sep 2014 07:45:33 +0000 (+0200) Subject: Issue4107/2: Score_performer::prepare: precomputed_recurse_over_translators should... X-Git-Tag: release/2.19.15-1~24 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0e1e8169813d68179939d2361936cb4e80f7c394;p=lilypond.git Issue4107/2: Score_performer::prepare: precomputed_recurse_over_translators should do START, not STOP --- diff --git a/lily/score-performer.cc b/lily/score-performer.cc index 521ebe36a3..e402b665c1 100644 --- a/lily/score-performer.cc +++ b/lily/score-performer.cc @@ -111,7 +111,7 @@ Score_performer::prepare (SCM sev) Moment *m = Moment::unsmob (sm); audio_column_ = new Audio_column (*m); announce_element (Audio_element_info (audio_column_, 0)); - precomputed_recurse_over_translators (context (), START_TRANSLATION_TIMESTEP, STOP); + precomputed_recurse_over_translators (context (), START_TRANSLATION_TIMESTEP, START); } IMPLEMENT_LISTENER (Score_performer, finish);