From e0f6ef43694da21d97a9f8b51341ec1e05d5a508 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 17 Jan 2022 05:03:18 +0100 Subject: [PATCH] Always use a sidechain input to control triggers This allows MIDI trigger tacks to distinguish between music-data and control-data. --- libs/ardour/track.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 5074ebf0e3..0eaabbb365 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -109,13 +109,7 @@ Track::init () boost::shared_ptr 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 ();