no need to force a change here.

Fixes an issue with Mixbus where set_active() is a NO-OP for mixbusses.
This commit is contained in:
Robin Gareus 2016-05-05 18:33:15 +02:00
parent 17ace643e4
commit a644212506

View 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);
}