From e2a28ec776ebb5fccaac2a3bef50d3a929526b04 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 7 May 2021 16:24:44 -0600 Subject: [PATCH] avoid playhead jumping while we locate from a control surface --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 72144a5983..7547d46627 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -5970,7 +5970,7 @@ Editor::super_rapid_screen_update () return; } - if (!_pending_locate_request) { + if (!_pending_locate_request && !_session->locate_initiated()) { _playhead_cursor->set_position (sample); }