From 9ef4888e9140aa479422a6c1ad377b4194e3e94c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 12 May 2015 12:28:05 -0400 Subject: [PATCH] fix logic of previous commit for transport-stop during locate --- 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 ce9f4fe35b..97e6eb7d5b 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -1037,7 +1037,7 @@ Session::locate (framepos_t target_frame, bool with_roll, bool with_flush, bool bool transport_was_stopped = !transport_rolling(); if (transport_was_stopped && (!auto_play_legal || !config.get_auto_play()) && !with_roll && !(synced_to_engine() && play_loop) && - (Profile->get_trx() && !(config.get_external_sync() && !synced_to_engine()))) { + (!Profile->get_trx() || !(config.get_external_sync() && !synced_to_engine()))) { realtime_stop (false, true); // XXX paul - check if the 2nd arg is really correct transport_was_stopped = true; } else {