diff --git a/libs/ardour/ardour/presentation_info.h b/libs/ardour/ardour/presentation_info.h index 9f7d49c025..719ab98110 100644 --- a/libs/ardour/ardour/presentation_info.h +++ b/libs/ardour/ardour/presentation_info.h @@ -137,8 +137,8 @@ class LIBARDOUR_API PresentationInfo : public PBD::Stateful #endif /* VBM */ - V2Program = 0x4000, // deprecated (conflicts with TriggerTrack) - V2MixMinus = 0x8000, // deprecated (conflicts with SurroundMaster) + Program = 0x4000, // deprecated (conflicts with TriggerTrack) + MixMinus = 0x8000, // deprecated (conflicts with SurroundMaster) VBMProgram = 0x10000, VBMMixMinus = 0x20000, #ifdef VBM diff --git a/libs/ardour/enums.cc b/libs/ardour/enums.cc index c85d160bd0..9e426177f8 100644 --- a/libs/ardour/enums.cc +++ b/libs/ardour/enums.cc @@ -832,6 +832,12 @@ setup_enum_writer () REGISTER_CLASS_ENUM (PresentationInfo, SurroundMaster); #ifdef MIXBUS REGISTER_CLASS_ENUM (PresentationInfo, MixbusEditorHidden); +#endif +#ifdef VBM + REGISTER_CLASS_ENUM (PresentationInfo, Program); + REGISTER_CLASS_ENUM (PresentationInfo, MixMinus); + REGISTER_CLASS_ENUM (PresentationInfo, VBMProgram); + REGISTER_CLASS_ENUM (PresentationInfo, VBMMixMinus); #endif REGISTER_BITS (_PresentationInfo_Flag);