From 36940091766ed9abf2a7848dc52fe7dbdac69ee9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 5 Feb 2022 01:10:27 +0100 Subject: [PATCH] Fix silence w/MonitoringSilence and triggerbox --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index d36ba73575..ee789733a7 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -452,7 +452,7 @@ Route::process_output_buffers (BufferSet& bufs, * we may need to monitor disk instead. */ const MonitorState ms = monitoring_state (); - const bool silent = _have_internal_generator ? false : (ms == MonitoringSilence); + const bool silent = _have_internal_generator || (_triggerbox && !_triggerbox->empty ()) ? false : (ms == MonitoringSilence); _main_outs->no_outs_cuz_we_no_monitor (silent);