skip special routes for now until a proper setting mechanism is in place

This commit is contained in:
Nikolaus Gullotta 2019-06-04 10:07:14 -05:00 committed by Nikolaus Gullotta
parent 0844140c90
commit a6f769d1dd
No known key found for this signature in database
GPG key ID: 565F60578092AA31

View file

@ -333,6 +333,15 @@ void MixerSnapshot::recall()
boost::shared_ptr<Route> route = _session->route_by_name(state.name);
if(route) {
if(route->is_auditioner() || route->is_master() || route->is_monitor()) {
/* we need to special case this but I still
want to be able to set some state info here
skip... for now */
continue;
}
}
if(route) {
PresentationInfo::order_t order = route->presentation_info().order();
string name = route->name();