From 587fc5005930cb6b18e37444883a80ffd3d02b2b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 20 Feb 2020 22:52:26 +0100 Subject: [PATCH] Fix Inline-control visibility state This fixes an issue when copy/pasting plugins or aux-sends from one track to another. After copying the processor, the state is copied, however the Controllable state did save the InlineControl flag, so this as lost. (amend 93180ceea) --- libs/pbd/enums.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/pbd/enums.cc b/libs/pbd/enums.cc index ee4595752f..e2445162df 100644 --- a/libs/pbd/enums.cc +++ b/libs/pbd/enums.cc @@ -40,6 +40,7 @@ setup_libpbd_enums () REGISTER_CLASS_ENUM (Controllable, GainLike); REGISTER_CLASS_ENUM (Controllable, RealTime); REGISTER_CLASS_ENUM (Controllable, NotAutomatable); + REGISTER_CLASS_ENUM (Controllable, InlineControl); REGISTER_BITS (controllable_flags); REGISTER_CLASS_ENUM (Controllable, InverseGroup);