force automation_run() calls in Route::process_output_buffers() to do "active only"

This commit is contained in:
Paul Davis 2021-06-07 20:27:49 -06:00
parent a2a3ae5ea6
commit 439bf215de

View file

@ -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);
automation_run (start_sample, nframes, true);
if (_pannable) {
_pannable->automation_run (start_sample + _signal_latency, nframes);
_pannable->automation_run (start_sample + _signal_latency,nframes, true);
}
/* figure out if we're going to use gain automation */