summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_channel_selector.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/export_channel_selector.cc')
-rw-r--r--gtk2_ardour/export_channel_selector.cc2
1 files changed, 1 insertions, 1 deletions
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());