summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/controllable.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/pbd/controllable.h')
-rw-r--r--libs/pbd/pbd/controllable.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/libs/pbd/pbd/controllable.h b/libs/pbd/pbd/controllable.h
index a83a42bcb3..3d5dd5fc65 100644
--- a/libs/pbd/pbd/controllable.h
+++ b/libs/pbd/pbd/controllable.h
@@ -73,10 +73,11 @@ class LIBPBD_API Controllable : public PBD::StatefulDestructible, public boost::
{
public:
enum Flag {
- Toggle = 0x1,
- GainLike = 0x2,
- RealTime = 0x4,
- NotAutomatable = 0x8,
+ Toggle = 0x01,
+ GainLike = 0x02,
+ RealTime = 0x04,
+ NotAutomatable = 0x08,
+ InlineControl = 0x10,
};
Controllable (const std::string& name, Flag f = Flag (0));