13
0

Update Control flags of Aux Sends

This fixes old session-state of sessions saved after
6.0-pre0-3039-g93180ceea9 and before 6.0-pre0-3459-g587fc50059.
It's mainly relevant for Mixbus6.0
This commit is contained in:
Robin Gareus 2020-02-20 23:11:04 +01:00
parent 587fc50059
commit 2fb260e6e8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -295,6 +295,13 @@ Send::set_state (const XMLNode& node, int version)
XMLNode* gain_node;
if ((gain_node = node.child (Controllable::xml_node_name.c_str ())) != 0) {
_gain_control->set_state (*gain_node, version);
#if 1 // remove after Ardour 6.0 / Mixbus 6.1
/* fix old sessions (6.0-pre0-3039-g93180ceea9 .. 6.0-pre0-3459-g587fc50059)
* this is mainly relevant for Mixbus6.0, copy/paste aux-sends.
* -> remove me after 6.1
*/
_gain_control->set_flags (Controllable::Flag ((int)_gain_control->flags() | Controllable::InlineControl));
#endif
}
if (version <= 6000) {