13
0

Always use a sidechain input to control triggers

This allows MIDI trigger tacks to distinguish between music-data
and control-data.
This commit is contained in:
Robin Gareus 2022-01-17 05:03:18 +01:00
parent bf9ef3abd3
commit e0f6ef4369
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -109,13 +109,7 @@ Track::init ()
boost::shared_ptr<TriggerBox> tb (new TriggerBox (_session, data_type ()));
tb->set_owner (this);
add_processor (tb, _polarity);
if (data_type () == DataType::AUDIO) {
/* if placing this in a route where the default
* data type is AUDIO, the triggerbox will need
* a sidehcain MIDI input to be able to be MIDI controlled
*/
tb->add_midi_sidechain ();
}
tb->add_midi_sidechain ();
}
set_align_choice_from_io ();