when editing tempo, round position to beat in GUI

This commit is contained in:
Paul Davis 2023-05-05 20:52:48 -06:00
parent 32a3591018
commit 240a85097c
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ Editor::edit_tempo_section (TempoPoint& section)
/* Step 4: convert to quarters */
new_pos = prev_tm.quarters_at (when);
new_pos = prev_tm.quarters_at (when).round_to_beat ();
}
TempoMapChange tmc (*this, _("edit tempo"));