space bar action for clip recording should only take place if transport is rolling

This commit is contained in:
Paul Davis 2025-05-13 12:08:50 -06:00
parent b6e1846c39
commit 5b8e3a2ecb

View file

@ -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;
}