summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/pbd/pbd/controllable.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/pbd/pbd/controllable.h b/libs/pbd/pbd/controllable.h
index 11ba979198..d2296c59ae 100644
--- a/libs/pbd/pbd/controllable.h
+++ b/libs/pbd/pbd/controllable.h
@@ -54,7 +54,9 @@ class LIBPBD_API Controllable : public PBD::StatefulDestructible {
enum Flag {
Toggle = 0x1,
GainLike = 0x2,
- RealTime = 0x4
+ RealTime = 0x4,
+ NotAutomatable = 0x8,
+
};
Controllable (const std::string& name, Flag f = Flag (0));