add a new Controllable::NotAutomable flag
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 9 Apr 2016 20:14:18 +0000 (16:14 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 19:30:40 +0000 (15:30 -0400)
libs/pbd/pbd/controllable.h

index 11ba979198e114e49803d83f283f2250f37137b3..d2296c59aeddd415c001a38ba558e1f4048fe4da 100644 (file)
@@ -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));