diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index a83e550c00..075ccd72c1 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -4534,10 +4534,10 @@ Route::nth_send (uint32_t n) const for (i = _processors.begin(); i != _processors.end(); ++i) { if (boost::dynamic_pointer_cast (*i)) { - if ((*i)->name().find (_("Monitor")) == 0) { + if ((*i) == _monitor_send) { /* send to monitor section is not considered - to be an accessible send. - */ + * to be an accessible send. + */ continue; }