From 240a85097cf9db61c33df673f8ed743fc0ca2555 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 5 May 2023 20:52:48 -0600 Subject: [PATCH] when editing tempo, round position to beat in GUI --- gtk2_ardour/editor_tempodisplay.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_tempodisplay.cc b/gtk2_ardour/editor_tempodisplay.cc index 7b58e52ae7..1a1ea2acee 100644 --- a/gtk2_ardour/editor_tempodisplay.cc +++ b/gtk2_ardour/editor_tempodisplay.cc @@ -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"));