From bf9ef3abd3455b08d4f99e4aa906b94ec0b86e10 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 16 Jan 2022 20:34:24 -0700 Subject: [PATCH] add comment --- libs/ardour/track.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 157309f461..5074ebf0e3 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -101,7 +101,11 @@ Track::init () _disk_writer->set_block_size (_session.get_block_size ()); _disk_writer->set_owner (this); - if (!is_auditioner ()) { + /* no triggerbox for the auditioner, to avoid visual clutter in + * patchbays and elsewhere (or special-case code in those places) + */ + + if (!is_auditioner()) { boost::shared_ptr tb (new TriggerBox (_session, data_type ())); tb->set_owner (this); add_processor (tb, _polarity);