mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Only list tracks with audio-ports when exporting audio files
This commit is contained in:
parent
d513d8b876
commit
8a927cc522
1 changed files with 3 additions and 1 deletions
|
|
@ -139,7 +139,9 @@ PortExportChannelSelector::fill_route_list ()
|
||||||
if ((*it)->is_master () || (*it)->is_monitor ()) {
|
if ((*it)->is_master () || (*it)->is_monitor ()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
channel_view.add_route ((*it)->output().get());
|
if ((*it)->output()->n_ports ().n_audio () > 0) {
|
||||||
|
channel_view.add_route ((*it)->output().get());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
update_channel_count ();
|
update_channel_count ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue