From 8f9018ceda8de2ce4095f1daaefeef129b51188b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 10 Aug 2025 01:22:47 +0200 Subject: [PATCH] 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. --- gtk2_ardour/editor_mixer.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_mixer.cc b/gtk2_ardour/editor_mixer.cc index 5adb8e3183..7ea9ef9b18 100644 --- a/gtk2_ardour/editor_mixer.cc +++ b/gtk2_ardour/editor_mixer.cc @@ -113,6 +113,10 @@ Editor::show_editor_mixer (bool yn) if ((atv = dynamic_cast (*i)) != 0) { r = atv->route(); + if (r && r->is_hidden ()) { + r.reset (); + continue; + } break; } }