Suggest multi-out of instruments by default

When a user picks a N-channel instrument with strict i/o.
Offer N-channel (with optional fan-out) as default.
This commit is contained in:
Robin Gareus 2019-10-30 15:35:23 +01:00
parent a16f004d24
commit 796558ef51
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -146,6 +146,8 @@ PluginSetupDialog::setup_output_presets ()
if (have_matching_io) {
select_output_preset (_cur_outputs.n_audio ());
} else if (ppc.size() == 1 && _pi->strict_io ()) {
select_output_preset (*ppc.begin ());
} else {
select_output_preset (0);
}