From 82bdddb829f9bffd656ade5cbf702fc24c70f49d Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 8 Jul 2022 11:09:36 -0500 Subject: [PATCH] fix Follow-Count widget in clip properties GUI * add follow_count to all_trigger_props so widget gets updated on selection --- libs/ardour/triggerbox.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index b8bb456295..a6d97e652b 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -102,6 +102,7 @@ TriggerBox::all_trigger_props() all.add(Properties::use_follow_length); all.add(Properties::quantization); all.add(Properties::follow_length); + all.add(Properties::follow_count); all.add(Properties::launch_style); all.add(Properties::follow_action0); all.add(Properties::follow_action1);