update all location markers during tempo/meter drags

This commit is contained in:
Paul Davis 2023-10-02 16:51:18 -06:00
parent dd8f5c477f
commit 969dcaa8a6
1 changed files with 4 additions and 0 deletions

View File

@ -907,6 +907,10 @@ Editor::mid_tempo_change (MidTempoChanges what_changed)
b->update ();
}
for (auto const & lam : location_markers) {
lam.second->set_position (lam.first->start(), lam.first->end());
}
update_tempo_based_rulers ();
maybe_draw_grid_lines ();