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:
Robin Gareus 2025-08-10 01:22:47 +02:00
parent aaaf25ad01
commit 8f9018ceda
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -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;
}
}