Don't offer the monitor buss to export from (#4393).

git-svn-id: svn://localhost/ardour2/branches/3.0@10306 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-10-25 16:08:16 +00:00
parent 09e0f30a81
commit 77279f390d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ PortExportChannelSelector::fill_route_list ()
channel_view.add_route (master);
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
if ((*it)->output().get() == master) {
if ((*it)->is_master () || (*it)->is_monitor ()) {
continue;
}
channel_view.add_route ((*it)->output().get());