summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_channel_selector.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-10-25 16:08:16 +0000
committerCarl Hetherington <carl@carlh.net>2011-10-25 16:08:16 +0000
commit77279f390d9e8c85ff336d8f7422cac3ecc81164 (patch)
tree8a4631d6f238e167f4e75006851e3dcfc348c67e /gtk2_ardour/export_channel_selector.cc
parent09e0f30a81842f5b742f3fcc8ee3a856976531af (diff)
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
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());