mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
[Summary] Excluding whatever is not bus from arrange view, compact meter bridge and mixer bridge view
This commit is contained in:
parent
a3a63735db
commit
f9ed8e9ded
3 changed files with 18 additions and 11 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue