From 19f6a6a739c8c7acf80bd2926d01697181f3379b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 18 Feb 2022 12:52:30 -0700 Subject: [PATCH] triggerbox: during fast-forward, if there's nothing to do, set_currently_playing to null if left non-null, the next TriggerBox::run() method will start the transport rolling. --- libs/ardour/triggerbox.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index fd61f173ad..8171c43cb3 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -2666,6 +2666,7 @@ TriggerBox::fast_forward (CueEvents const & cues, samplepos_t transport_position if (cues.empty() || !(Config->get_cue_behavior() & FollowCues) || (cues.front().time > transport_position)) { DEBUG_TRACE (DEBUG::Triggers, string_compose ("%1: nothing to be done\n", order())); _locate_armed = false; + _currently_playing = 0; if (tracker) { tracker->reset (); }