summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2016-01-30 21:05:45 -0800
committerLen Ovens <len@ovenwerks.net>2016-01-30 21:05:45 -0800
commit0fa208015e6b7fe0735fefa14807e5274899e25a (patch)
tree8f0371abe9f5d9fb7acc9b05a6bb9bae2efbb635
parente622f3e5b6e791b61b67a39adefd26bc4e611526 (diff)
Mackie Control: Make Monitor send not show in Sends subview.
-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 76c4b1af45..dda8fa0da5 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -4516,7 +4516,7 @@ Route::nth_send (uint32_t n) const
for (i = _processors.begin(); i != _processors.end(); ++i) {
if (boost::dynamic_pointer_cast<Send> (*i)) {
- if ((*i)->name() == _("Monitor")) {
+ if ((*i)->name() == _("Monitor 1")) {
/* send to monitor section is not considered
to be an accessible send.
*/