From a624573ee64bf8614a37af0ddf5fc25e49e76c52 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 19 May 2015 09:40:04 -0400 Subject: [PATCH] add additional check for playhead priority target when testing loop range, to match Tracks' logic --- 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 42ef46ca25..c0765c3991 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -547,7 +547,7 @@ Session::select_playhead_priority_target (framepos_t& jump_to) } } - if (jump_to < 0 && (autoreturn & Loop)) { + if (jump_to < 0 && (autoreturn & Loop) && get_play_loop()) { /* don't try to handle loop play when synced to JACK */ if (!synced_to_engine()) {