13
0

add a "region" property so that we can properly signal when it has changed inside a Trigger

This commit is contained in:
Paul Davis 2024-10-21 17:28:25 -06:00
parent 7a4fe02d53
commit 769920d337
2 changed files with 2 additions and 0 deletions

View File

@ -1100,6 +1100,7 @@ namespace Properties {
LIBARDOUR_API extern PBD::PropertyDescriptor<bool> patch_change; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor<bool> patch_change; /* type not important */
LIBARDOUR_API extern PBD::PropertyDescriptor<bool> channel_map; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor<bool> channel_map; /* type not important */
LIBARDOUR_API extern PBD::PropertyDescriptor<bool> used_channels; /* type not important */ LIBARDOUR_API extern PBD::PropertyDescriptor<bool> used_channels; /* type not important */
LIBARDOUR_API extern PBD::PropertyDescriptor<bool> region; /* type not important */
LIBARDOUR_API extern PBD::PropertyDescriptor<bool> tempo_meter; /* only used to transmit changes, not storage */ LIBARDOUR_API extern PBD::PropertyDescriptor<bool> tempo_meter; /* only used to transmit changes, not storage */
} }

View File

@ -97,6 +97,7 @@ namespace ARDOUR {
PBD::PropertyDescriptor<bool> patch_change; /* only to transmit updates, not storage */ PBD::PropertyDescriptor<bool> patch_change; /* only to transmit updates, not storage */
PBD::PropertyDescriptor<bool> channel_map; /* only to transmit updates, not storage */ PBD::PropertyDescriptor<bool> channel_map; /* only to transmit updates, not storage */
PBD::PropertyDescriptor<bool> used_channels; /* only to transmit updates, not storage */ PBD::PropertyDescriptor<bool> used_channels; /* only to transmit updates, not storage */
PBD::PropertyDescriptor<bool> region; /* only to transmit updates, not storage */
} }
} }