summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2017-08-23 22:04:54 +0200
committerJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2017-08-23 23:31:28 +0200
commit74fada443d902c919b35ca736cbd5722624b49c4 (patch)
tree6b47e79d6f18dadf7fc2debefbd3b3d229fcbd39 /gtk2_ardour/mixer_strip.cc
parent1aa3a3f4d6cd0c75c0f346bde37813fff3f5eedb (diff)
Make the output menu able to connect partial matches
Use the new partial connection feature of IO::connect_ports_to_bundle.
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index dc8813dbd7..0a457cc6dd 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -1097,7 +1097,7 @@ MixerStrip::bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle> c)
ARDOUR::BundleList current = _route->output()->bundles_connected ();
if (std::find (current.begin(), current.end(), c) == current.end()) {
- _route->output()->connect_ports_to_bundle (c, true, this);
+ _route->output()->connect_ports_to_bundle (c, true, true, this);
} else {
_route->output()->disconnect_ports_from_bundle (c, this);
}