summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-19 02:11:10 +0200
committerRobin Gareus <robin@gareus.org>2017-07-19 02:11:10 +0200
commit7893cac71889811252abc5e02288c2cce5773ceb (patch)
treee011b5e6b4382ddeac24d494a97a72ccf5fe9744 /libs
parent601604972c680ff8e04c991aa2c73cd4de689a1f (diff)
Fix well-known send API for mixbusses.
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 9bd5c49cea..acd5149e3b 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -5342,7 +5342,7 @@ Route::send_level_controllable (uint32_t n) const
# undef MIXBUS_PORTS_H
# include "../../gtk2_ardour/mixbus_ports.h"
boost::shared_ptr<ARDOUR::PluginInsert> plug = ch_post();
- if (plug) {
+ if (plug && !mixbus()) {
uint32_t port_id = 0;
switch (n) {
case 0: port_id = port_channel_post_aux1_level; break;