[Summary] Excluding whatever is not bus from arrange view, compact meter bridge and mixer bridge view

This commit is contained in:
VKamyshniy 2014-07-29 14:06:51 +03:00
parent a3a63735db
commit f9ed8e9ded
3 changed files with 18 additions and 11 deletions

View file

@ -5078,7 +5078,8 @@ Editor::add_routes (RouteList& routes)
for (RouteList::iterator x = routes.begin(); x != routes.end(); ++x) {
boost::shared_ptr<Route> route = (*x);
if (route->is_auditioner() || route->is_monitor()) {
if (route->is_auditioner() || route->is_monitor() ||
!boost::dynamic_pointer_cast<Track> (route)) {
continue;
}