mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 03:17:39 +01:00
fix logic of previous commit for transport-stop during locate
This commit is contained in:
parent
4abea520df
commit
9ef4888e91
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue