From d53fa4bee413465d03eb08f52a0f6877157bc43e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 18 Jan 2026 12:51:45 -0700 Subject: [PATCH] trigger recording length selector now sets trigger capture duration --- gtk2_ardour/cue_editor.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gtk2_ardour/cue_editor.cc b/gtk2_ardour/cue_editor.cc index 50dc1de42a..1f5441ce6a 100644 --- a/gtk2_ardour/cue_editor.cc +++ b/gtk2_ardour/cue_editor.cc @@ -745,7 +745,10 @@ CueEditor::set_recording_length (Temporal::BBT_Offset dur) } length_selector.set_active (label); - rec_length = dur; + + if (ref.trigger()) { + ref.trigger()->set_capture_duration (dur); + } } void