From a5dcccae60d3f9524e5d313f4b71b62f9309af6d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 18 Oct 2015 01:59:01 +0200 Subject: [PATCH] disable auto-return with external sync #6577 --- libs/ardour/session_transport.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index e2d64dd2ed..42b5a890dd 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -618,7 +618,7 @@ Session::select_playhead_priority_target (framepos_t& jump_to) bool Session::select_playhead_priority_target (framepos_t& jump_to) { - if (!config.get_auto_return()) { + if (config.get_external_sync() || !config.get_auto_return()) { return false; }