Hide hidden ports in port-matrix

This commit is contained in:
Robin Gareus 2021-02-01 23:48:51 +01:00
parent 7888d85750
commit 7d3d64512c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 4 additions and 1 deletions

View File

@ -638,7 +638,10 @@ PortGroupList::gather (ARDOUR::Session* session, ARDOUR::DataType type, bool inp
PortFlags flags (AudioEngine::instance()->port_engine().get_port_flags (ph));
if (port_has_prefix (p, lpnc)) {
if (flags & Hidden ) {
++s;
continue;
} else if (port_has_prefix (p, lpnc)) {
/* we own this port (named after the program) */