From 7f5a576f66885e8e2877842c4740329b198cc0b5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 23 May 2022 11:25:50 -0600 Subject: [PATCH] temporal: fix continuing tempo section's tempo after end-stretch --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 4a2973df36..c137a4ff7e 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3225,7 +3225,7 @@ TempoMap::stretch_tempo_end (TempoPoint* ts, samplepos_t sample, samplepos_t end prev_t->set_end_npm (new_bpm); if (ts->continuing()) { - ts->set_note_types_per_minute (prev_t->end_note_types_per_minute()); + ts->set_note_types_per_minute (prev_t->note_types_per_minute()); } reset_starting_at (prev_t->sclock());