13
0

Add missing set_state of _mute_control; fixes #3959.

git-svn-id: svn://localhost/ardour2/branches/3.0@12742 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-06-16 19:00:38 +00:00
parent daffec502e
commit 00f51c6abf

View File

@ -2127,6 +2127,8 @@ Route::set_state (const XMLNode& node, int version)
} else if (child->name() == Controllable::xml_node_name && (prop = child->property("name")) != 0) {
if (prop->value() == "solo") {
_solo_control->set_state (*child, version);
} else if (prop->value() == "mute") {
_mute_control->set_state (*child, version);
}
} else if (child->name() == X_("RemoteControl")) {