13
0

fix logic of previous commit for transport-stop during locate

This commit is contained in:
Paul Davis 2015-05-12 12:28:05 -04:00
parent 4abea520df
commit 9ef4888e91

View File

@ -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 {