From 42630f145a31d48fb9751c14aa9bd2dcdb3d91b9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 20 Jan 2020 11:14:28 -0700 Subject: [PATCH] include a LocateTransportDisposition argument when Editor initially locates Not clear if the editor really needs to make this call at all --- 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 23a21da819..4cd4f0019a 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1389,7 +1389,7 @@ Editor::set_session (Session *t) /* catch up with the playhead */ - _session->request_locate (playhead_cursor->current_sample ()); + _session->request_locate (playhead_cursor->current_sample (), MustStop); _pending_initial_locate = true; update_title ();