From 4965c83ef3d86643f8a8f0526a3c79a6d83a2b15 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 7 Mar 2022 22:51:57 +0100 Subject: [PATCH] Do not allow to remove the triggerbox processor --- 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 4f3ac8bfb4..789c63cb46 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -1419,7 +1419,7 @@ Route::clear_processors (Placement p) bool Route::is_internal_processor (boost::shared_ptr p) const { - if (p == _amp || p == _meter || p == _main_outs || p == _delayline || p == _trim || p == _polarity || (_volume && p == _volume)) { + if (p == _amp || p == _meter || p == _main_outs || p == _delayline || p == _trim || p == _polarity || (_volume && p == _volume) || (_triggerbox && p == _triggerbox)) { return true; } #ifdef MIXBUS