mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
fix a long-standing bug arising from a change to some logic which reversed an "is-rolling" test
This commit is contained in:
parent
c9b991ba50
commit
f24fef669a
1 changed files with 2 additions and 2 deletions
|
|
@ -1112,8 +1112,8 @@ 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) &&
|
||||
|
||||
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()))) {
|
||||
realtime_stop (false, true); // XXX paul - check if the 2nd arg is really correct
|
||||
transport_was_stopped = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue