mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-25 07:57:43 +01:00
skip special routes for now until a proper setting mechanism is in place
This commit is contained in:
parent
0844140c90
commit
a6f769d1dd
1 changed files with 9 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue