diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc index 78dd8d20f8..27e6ffaa50 100644 --- a/gtk2_ardour/export_channel_selector.cc +++ b/gtk2_ardour/export_channel_selector.cc @@ -569,6 +569,18 @@ TrackExportChannelSelector::fill_list() track_list->clear(); RouteList routes = *_session->get_routes(); + for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) { + Route * route = it->get(); + if(!dynamic_cast(route)) { + // not a track, must be a bus + if ((*it)->is_master () || (*it)->is_monitor ()) { + continue; + } + // not monitor or master bus + + add_track(route); + } + } for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) { Route * route = it->get(); if(dynamic_cast(route)) {