summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-05 18:33:15 +0200
committerRobin Gareus <robin@gareus.org>2016-05-05 18:33:50 +0200
commita644212506dcf41ad0b90a3c38ccb2279b6054c5 (patch)
tree4d5428fc16a696b2c27bf0a34011c51809d8613b /libs
parent17ace643e4edbec1e5bd7b446d039f8c94beef75 (diff)
no need to force a change here.
Fixes an issue with Mixbus where set_active() is a NO-OP for mixbusses.
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 5466cb5a84..6b2f9994f6 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -2944,7 +2944,6 @@ Route::set_state (const XMLNode& node, int version)
if ((prop = node.property (X_("active"))) != 0) {
bool yn = string_is_affirmative (prop->value());
- _active = !yn; // force switch
set_active (yn, this);
}