From 2c6d59561416900cd99e79bee4d5afb82d87aed8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 9 Apr 2016 16:14:18 -0400 Subject: [PATCH] add a new Controllable::NotAutomable flag --- libs/pbd/pbd/controllable.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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));