From 4048118926cd332c8cff11101bdbe1c9ab8d2ab7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Feb 2022 21:06:17 -0700 Subject: [PATCH] triggerbox: stop-all-cues cue event now stops all running triggers This is done regardless of whether or not the trigger was started by a cue or individually --- libs/ardour/triggerbox.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 4d0605de9b..099a08c440 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -3454,7 +3454,7 @@ TriggerBox::run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_samp * marker.The stop is quantized, not immediate. */ - if (_currently_playing && _currently_playing->cue_launched()) { + if (_currently_playing) { _currently_playing->unbang (); }