From b1bcb7f9fc32a5643a476400c78986aa1622cc5b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 11 May 2024 07:47:03 -0600 Subject: [PATCH] activate Delivery amp if used --- libs/ardour/delivery.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc index 8dcedc4e1f..fa57e7294e 100644 --- a/libs/ardour/delivery.cc +++ b/libs/ardour/delivery.cc @@ -198,6 +198,7 @@ Delivery::set_gain_control (std::shared_ptr gc) _gain_control = gc; _amp.reset (new Amp (_session, _("Fader"), _gain_control, true)); _amp->configure_io (_configured_output, _configured_output); + _amp->activate (); } else { _amp.reset (); _gain_control = gc;