Remove the word Threshold from the parameter names
This makes them too long otherwise.
This commit is contained in:
parent
07136bcdc9
commit
a406f451b0
|
@ -174,7 +174,7 @@ impl Default for SpectralCompressorParams {
|
||||||
// TODO: Set nicer default values for these things
|
// TODO: Set nicer default values for these things
|
||||||
// As explained above, these offsets are relative to the target curve
|
// As explained above, these offsets are relative to the target curve
|
||||||
downwards_threshold_offset_db: FloatParam::new(
|
downwards_threshold_offset_db: FloatParam::new(
|
||||||
"Downwards Threshold Offset",
|
"Downwards Offset",
|
||||||
0.0,
|
0.0,
|
||||||
FloatRange::Linear {
|
FloatRange::Linear {
|
||||||
min: -50.0,
|
min: -50.0,
|
||||||
|
@ -184,7 +184,7 @@ impl Default for SpectralCompressorParams {
|
||||||
.with_unit(" dB")
|
.with_unit(" dB")
|
||||||
.with_step_size(0.1),
|
.with_step_size(0.1),
|
||||||
upwards_threshold_offset_db: FloatParam::new(
|
upwards_threshold_offset_db: FloatParam::new(
|
||||||
"Upwards Threshold Offset",
|
"Upwards Offset",
|
||||||
0.0,
|
0.0,
|
||||||
FloatRange::Linear {
|
FloatRange::Linear {
|
||||||
min: -50.0,
|
min: -50.0,
|
||||||
|
|
Loading…
Reference in a new issue