From 00f51c6abfeb4aa35b4df5a280e6b07a4004957e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 16 Jun 2012 19:00:38 +0000 Subject: Add missing set_state of _mute_control; fixes #3959. git-svn-id: svn://localhost/ardour2/branches/3.0@12742 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/route.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libs/ardour/route.cc') diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 318524d8ed..edc44aeb92 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -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")) { -- cgit v1.2.3