From 67c45dd44d6cb21cb1ee3e17667c5aa1e6108a92 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 25 Oct 2025 15:16:15 -0600 Subject: [PATCH] audio clip editor: do not short circuit repeated set_trigger() w/same trigger --- gtk2_ardour/audio_clip_editor.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/audio_clip_editor.cc b/gtk2_ardour/audio_clip_editor.cc index 48f58586c7..7a552e2355 100644 --- a/gtk2_ardour/audio_clip_editor.cc +++ b/gtk2_ardour/audio_clip_editor.cc @@ -472,9 +472,9 @@ AudioClipEditor::set_trigger (TriggerReference& tr) { EC_LOCAL_TEMPO_SCOPE; - if (tr == ref) { - return; - } +// if (tr == ref) { +// return; +// } CueEditor::set_trigger (tr); rec_box.show ();