From 3d38b4f58ec0b1ebab9101863ed93a698f4b4c94 Mon Sep 17 00:00:00 2001 From: nick_m Date: Wed, 19 Oct 2016 23:09:24 +1100 Subject: [PATCH] Duration clock edit uses current time to resolve meter. - should fix the remaining part of #7072 --- gtk2_ardour/audio_clock.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc index 3746bb30b3..4a1275192d 100644 --- a/gtk2_ardour/audio_clock.cc +++ b/gtk2_ardour/audio_clock.cc @@ -670,7 +670,7 @@ AudioClock::end_edit (bool modify) case BBT: if (is_duration) { - pos = frame_duration_from_bbt_string (0, edit_string); + pos = frame_duration_from_bbt_string (current_time(), edit_string); } else { pos = frames_from_bbt_string (0, edit_string); }