From d53d03c5cf951ec7b1564c477f90ae9daec0bc56 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 24 Jul 2022 17:43:31 +0200 Subject: [PATCH] Default downwards hi-freq rolloff to 0.25 Sort of makes sense to have these two be symmetrical --- plugins/spectral_compressor/src/compressor_bank.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/spectral_compressor/src/compressor_bank.rs b/plugins/spectral_compressor/src/compressor_bank.rs index 9c46aa53..f74d7a3d 100644 --- a/plugins/spectral_compressor/src/compressor_bank.rs +++ b/plugins/spectral_compressor/src/compressor_bank.rs @@ -306,7 +306,8 @@ impl CompressorParams { if param_id_prefix == UPWARDS_NAME_PREFIX { 0.75 } else { - 0.0 + // These basically work in the opposite way + 0.25 }, FloatRange::Linear { min: 0.0, max: 1.0 }, )