mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Mixbus prefers stereo-tracks when importing files as triggers
This commit is contained in:
parent
1c5cfdad82
commit
9b224a79d4
1 changed files with 7 additions and 0 deletions
|
|
@ -963,6 +963,13 @@ Editor::add_sources (vector<string> paths,
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef MIXBUS
|
||||
if (mode == ImportAsTrigger) {
|
||||
/* Mixbus will only ever use stereo tracks when using DnD to import to triggers */
|
||||
input_chan = 2;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (Config->get_output_auto_connect() & AutoConnectMaster) {
|
||||
output_chan = (_session->master_out() ? _session->master_out()->n_inputs().n_audio() : input_chan);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue