From a406f451b05d349657ae62cfe0852f598f7f066f Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 20 Jul 2022 20:24:51 +0200 Subject: [PATCH] Remove the word Threshold from the parameter names This makes them too long otherwise. --- plugins/spectral_compressor/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/spectral_compressor/src/lib.rs b/plugins/spectral_compressor/src/lib.rs index 9768d228..33f1581e 100644 --- a/plugins/spectral_compressor/src/lib.rs +++ b/plugins/spectral_compressor/src/lib.rs @@ -174,7 +174,7 @@ impl Default for SpectralCompressorParams { // TODO: Set nicer default values for these things // As explained above, these offsets are relative to the target curve downwards_threshold_offset_db: FloatParam::new( - "Downwards Threshold Offset", + "Downwards Offset", 0.0, FloatRange::Linear { min: -50.0, @@ -184,7 +184,7 @@ impl Default for SpectralCompressorParams { .with_unit(" dB") .with_step_size(0.1), upwards_threshold_offset_db: FloatParam::new( - "Upwards Threshold Offset", + "Upwards Offset", 0.0, FloatRange::Linear { min: -50.0,