From a1384d278978cafdc50e7275f32f670deb7f2466 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 11 Feb 2022 10:33:11 -0700 Subject: [PATCH] triggerbox; fast-forward should do nothing if we are not use cue markers --- libs/ardour/triggerbox.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 0dd23a96a8..142515d797 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -2579,12 +2579,12 @@ TriggerBox::set_ignore_patch_changes (bool yn) void TriggerBox::fast_forward (CueEvents const & cues, samplepos_t transport_position) { - PBD::Unwinder uw (_fast_fowarding, true); - - if (cues.empty() || cues.front().time > transport_position) { + if (cues.empty() || !(Config->get_cue_behavior() & FollowCues) || (cues.front().time > transport_position)) { return; } + PBD::Unwinder uw (_fast_fowarding, true); + using namespace Temporal; TempoMap::SharedPtr tmap (TempoMap::use());