13
0

fix simple but fatal mistake in defining PBD::Controllable::Flags enums.

This error caused the flags to be saved as an empty string, thus losing all state when the session is reloaded
This commit is contained in:
Paul Davis 2016-07-12 08:20:46 -04:00
parent 1f02dd2a85
commit 8de675d699

View File

@ -41,7 +41,7 @@ setup_libpbd_enums ()
REGISTER_CLASS_ENUM (Controllable, GainLike);
REGISTER_CLASS_ENUM (Controllable, RealTime);
REGISTER_CLASS_ENUM (Controllable, NotAutomatable);
REGISTER (controllable_flags);
REGISTER_BITS (controllable_flags);
REGISTER_CLASS_ENUM (Controllable, InverseGroup);
REGISTER_CLASS_ENUM (Controllable, UseGroup);