Don't show hidden tracks in the editor-mixer
If the first track in a given session was hidden, it was still shown in the editor-mixer after session load.
This commit is contained in:
@@ -113,6 +113,10 @@ Editor::show_editor_mixer (bool yn)
|
||||
|
||||
if ((atv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
|
||||
r = atv->route();
|
||||
if (r && r->is_hidden ()) {
|
||||
r.reset ();
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user