mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 23:25:43 +01:00
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:
parent
aaaf25ad01
commit
8f9018ceda
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue