From 53f802b2950db5aa30d5a26c3ae685302dddeffa Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 6 Feb 2022 02:08:58 +0100 Subject: [PATCH] Fix accidental gain smoothing style change --- plugins/examples/gain/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/examples/gain/src/lib.rs b/plugins/examples/gain/src/lib.rs index 164eac6f..709f98a6 100644 --- a/plugins/examples/gain/src/lib.rs +++ b/plugins/examples/gain/src/lib.rs @@ -57,7 +57,7 @@ impl Default for GainParams { Self { gain: FloatParam { value: 0.0, - smoothed: Smoother::new(SmoothingStyle::Logarithmic(1000.0)), + smoothed: Smoother::new(SmoothingStyle::Linear(3.0)), value_changed: None, // If, for instance, updating this parameter would require other parts of the // plugin's internal state to be updated other values to also be updated, then you