From 769920d337de74176c6a37830bb5a6bf0e05ad4d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 21 Oct 2024 17:28:25 -0600 Subject: [PATCH] add a "region" property so that we can properly signal when it has changed inside a Trigger --- libs/ardour/ardour/triggerbox.h | 1 + libs/ardour/triggerbox.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/libs/ardour/ardour/triggerbox.h b/libs/ardour/ardour/triggerbox.h index a2fc984d04..ece9a8d18b 100644 --- a/libs/ardour/ardour/triggerbox.h +++ b/libs/ardour/ardour/triggerbox.h @@ -1100,6 +1100,7 @@ namespace Properties { LIBARDOUR_API extern PBD::PropertyDescriptor patch_change; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor channel_map; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor used_channels; /* type not important */ + LIBARDOUR_API extern PBD::PropertyDescriptor region; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor tempo_meter; /* only used to transmit changes, not storage */ } diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 90be239bec..25eadacb0a 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -97,6 +97,7 @@ namespace ARDOUR { PBD::PropertyDescriptor patch_change; /* only to transmit updates, not storage */ PBD::PropertyDescriptor channel_map; /* only to transmit updates, not storage */ PBD::PropertyDescriptor used_channels; /* only to transmit updates, not storage */ + PBD::PropertyDescriptor region; /* only to transmit updates, not storage */ } }