13
0

add a new Controllable::NotAutomable flag

This commit is contained in:
Paul Davis 2016-04-09 16:14:18 -04:00
parent 537272b3b1
commit 2c6d595614

View 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));