diff --git a/libs/pbd/controllable.cc b/libs/pbd/controllable.cc index 5f7350da63..a2e6265927 100644 --- a/libs/pbd/controllable.cc +++ b/libs/pbd/controllable.cc @@ -145,7 +145,7 @@ Controllable::set_state (const XMLNode& node, int /*version*/) set_id (node); if ((prop = node.property (X_("flags"))) != 0) { - _flags = (Flag) string_2_enum (prop->value(), _flags); + _flags = (Flag) ((_flags & Controllable::RealTime) | string_2_enum (prop->value(), _flags)); } if ((prop = node.property (X_("value"))) != 0) {