mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
space bar action for clip recording should only take place if transport is rolling
This commit is contained in:
parent
b6e1846c39
commit
5b8e3a2ecb
1 changed files with 1 additions and 1 deletions
|
|
@ -1858,7 +1858,7 @@ ARDOUR_UI::spacebar_action (bool with_abort, bool roll_out_of_bounded_mode)
|
|||
|
||||
std::shared_ptr<TriggerBox> armed_tb = _session->armed_triggerbox();
|
||||
|
||||
if (armed_tb) {
|
||||
if (armed_tb && _session->transport_rolling()) {
|
||||
armed_tb->disarm_all ();
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue