mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 15:08:39 +01:00
Change default to -1.0 from 0.0
This commit is contained in:
2
src/effects/Normalize.cpp
Normal file → Executable file
2
src/effects/Normalize.cpp
Normal file → Executable file
@@ -33,7 +33,7 @@
|
|||||||
// Define keys, defaults, minimums, and maximums for the effect parameters
|
// Define keys, defaults, minimums, and maximums for the effect parameters
|
||||||
//
|
//
|
||||||
// Name Type Key Def Min Max Scale
|
// Name Type Key Def Min Max Scale
|
||||||
Param( Level, double, XO("Level"), 0.0, -145.0, 0.0, 1 );
|
Param( Level, double, XO("Level"), -1.0, -145.0, 0.0, 1 );
|
||||||
Param( RemoveDC, bool, XO("RemoveDcOffset"), true, false, true, 1 );
|
Param( RemoveDC, bool, XO("RemoveDcOffset"), true, false, true, 1 );
|
||||||
Param( ApplyGain, bool, XO("ApplyGain"), true, false, true, 1 );
|
Param( ApplyGain, bool, XO("ApplyGain"), true, false, true, 1 );
|
||||||
Param( StereoInd, bool, XO("StereoIndependent"), false, false, true, 1 );
|
Param( StereoInd, bool, XO("StereoIndependent"), false, false, true, 1 );
|
||||||
|
|||||||
Reference in New Issue
Block a user