summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/port_group.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/port_group.cc b/gtk2_ardour/port_group.cc
index 06011daf9a..93211f02e9 100644
--- a/gtk2_ardour/port_group.cc
+++ b/gtk2_ardour/port_group.cc
@@ -273,8 +273,10 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs)
/* Ardour stuff */
- ardour->add_bundle (session.the_auditioner()->output()->bundle());
- ardour->add_bundle (session.click_io()->bundle());
+ if (!inputs) {
+ ardour->add_bundle (session.the_auditioner()->output()->bundle());
+ ardour->add_bundle (session.click_io()->bundle());
+ }
/* Now find all other ports that we haven't thought of yet */