From 96a434b0a76deb5c44924c9bb43cbdce898b4aff Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 10 Jun 2021 15:25:13 -0600 Subject: [PATCH] return to all-automation-run rather than just active --- libs/ardour/route.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 75ad4cd2cf..4ee5ec1b08 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -367,10 +367,10 @@ Route::process_output_buffers (BufferSet& bufs, * Mute has its own issues since there's not a single mute-point, * but in general */ - automation_run (start_sample, nframes, true); + automation_run (start_sample, nframes); if (_pannable) { - _pannable->automation_run (start_sample + _signal_latency,nframes, true); + _pannable->automation_run (start_sample + _signal_latency,nframes); } /* figure out if we're going to use gain automation */