From 77279f390d9e8c85ff336d8f7422cac3ecc81164 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 25 Oct 2011 16:08:16 +0000 Subject: [PATCH] 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 --- gtk2_ardour/export_channel_selector.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc index 5d45ca5fa1..7f83858d99 100644 --- a/gtk2_ardour/export_channel_selector.cc +++ b/gtk2_ardour/export_channel_selector.cc @@ -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());