no need to force a change here.
authorRobin Gareus <robin@gareus.org>
Thu, 5 May 2016 16:33:15 +0000 (18:33 +0200)
committerRobin Gareus <robin@gareus.org>
Thu, 5 May 2016 16:33:50 +0000 (18:33 +0200)
Fixes an issue with Mixbus where set_active() is a NO-OP for mixbusses.

libs/ardour/route.cc

index 5466cb5a843a58146bfe926f6b7fc065538d8d7a..6b2f9994f6e358b099999a2ef5dc3c621a953c5e 100644 (file)
@@ -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);
        }