mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-14 01:16:32 +01:00
allow explicit "with-roll" argument to a locate to override Session::should_roll_after_locate()
This commit is contained in:
parent
5241cdcf03
commit
eee8eb1005
1 changed files with 1 additions and 1 deletions
|
|
@ -400,7 +400,7 @@ TransportFSM::start_locate_while_stopped (Event const & l) const
|
|||
assert (l.type == Locate);
|
||||
DEBUG_TRACE (DEBUG::TFSMEvents, "start_locate_while_stopped\n");
|
||||
|
||||
current_roll_after_locate_status = api->should_roll_after_locate();
|
||||
current_roll_after_locate_status = l.with_roll ? true : api->should_roll_after_locate();
|
||||
api->locate (l.target, current_roll_after_locate_status.get(), l.with_flush, l.with_loop, l.force);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue