mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
Strip Import: exclude special busses
This commit is contained in:
parent
c9b4b94466
commit
857b25980a
1 changed files with 3 additions and 0 deletions
|
|
@ -699,6 +699,9 @@ StripImportDialog::setup_strip_import_page ()
|
|||
_route_map.clear ();
|
||||
|
||||
for (auto const& r : *_session->get_routes ()) {
|
||||
if (r->is_main_bus () && !r->is_master ()) {
|
||||
continue;
|
||||
}
|
||||
#ifdef MIXBUS
|
||||
_route_map.emplace (r->id (), Session::RouteImportInfo (r->name (), r->presentation_info (), r->mixbus ()));
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue