summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-02-20 22:52:26 +0100
committerRobin Gareus <robin@gareus.org>2020-02-20 23:06:55 +0100
commit587fc5005930cb6b18e37444883a80ffd3d02b2b (patch)
tree936e91bb00c8df579e437e6630aab87f423e7aac
parent57598acbcf87bfc95eeb29819c390ee7550ef7ef (diff)
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)
-rw-r--r--libs/pbd/enums.cc1
1 files changed, 1 insertions, 0 deletions
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);