fix visual update of tempo markers during tempo marker drag

This commit is contained in:
Paul Davis 2023-09-10 20:07:41 -06:00
parent 3a19e7d48b
commit 09b368f5db
1 changed files with 4 additions and 0 deletions

View File

@ -904,6 +904,10 @@ Editor::mid_tempo_change (MidTempoChanges what_changed)
update_tempo_curves (min_tempo, max_tempo, _session->sample_rate());
}
for (auto & t : tempo_marks) {
t->update ();
}
for (auto & m : meter_marks) {
m->update ();
}