1
0
Fork 0

Increase the default Crisp amount

This commit is contained in:
Robbert van der Helm 2022-03-09 00:05:37 +01:00
parent 6072eb103d
commit 3a4f8abb4b

View file

@ -94,7 +94,7 @@ impl Default for CrispParams {
#[allow(clippy::derivable_impls)] #[allow(clippy::derivable_impls)]
fn default() -> Self { fn default() -> Self {
Self { Self {
amount: FloatParam::new("Amount", 0.2, FloatRange::Linear { min: 0.0, max: 1.0 }) amount: FloatParam::new("Amount", 0.35, FloatRange::Linear { min: 0.0, max: 1.0 })
.with_smoother(SmoothingStyle::Linear(10.0)) .with_smoother(SmoothingStyle::Linear(10.0))
.with_unit("%") .with_unit("%")
.with_value_to_string(formatters::f32_percentage(0)) .with_value_to_string(formatters::f32_percentage(0))