PluginInsert::silence() should never change the status of _active

This commit is contained in:
Paul Davis 2021-12-01 13:26:14 -07:00
parent ebc5195490
commit 7edbf06420

View File

@ -1254,7 +1254,7 @@ PluginInsert::silence (samplecnt_t nframes, samplepos_t start_sample)
{
automation_run (start_sample, nframes, true); // evaluate automation only
if (!check_active()) {
if (!_active) {
// XXX delaybuffers need to be offset by nframes
return;
}