mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-13 16:15:48 +01:00
Use dB, not LUFS by default.
Parameter name to camel-case, not spaced. Also a wording change on the choice prompt.
This commit is contained in:
@@ -38,7 +38,7 @@ Param( LUFSLevel, double, wxT("LUFSLevel"), -23.0, -145.0, 0.0,
|
||||
Param( RemoveDC, bool, wxT("RemoveDcOffset"), true, false, true, 1 );
|
||||
Param( ApplyGain, bool, wxT("ApplyGain"), true, false, true, 1 );
|
||||
Param( StereoInd, bool, wxT("StereoIndependent"), false, false, true, 1 );
|
||||
Param( UseLoudness, bool, wxT("Use Loudness"), true, false, true, 1 );
|
||||
Param( UseLoudness, bool, wxT("UseLoudness"), false, false, true, 1 );
|
||||
|
||||
BEGIN_EVENT_TABLE(EffectNormalize, wxEvtHandler)
|
||||
EVT_CHECKBOX(wxID_ANY, EffectNormalize::OnUpdateUI)
|
||||
@@ -368,7 +368,7 @@ void EffectNormalize::PopulateOrExchange(ShuttleGui & S)
|
||||
}
|
||||
S.EndHorizontalLay();
|
||||
|
||||
mUseLoudnessCheckBox = S.AddCheckBox(_("Use integrative loudness instead of maximum amplitude"),
|
||||
mUseLoudnessCheckBox = S.AddCheckBox(_("Use loudness instead of peak amplitude"),
|
||||
mUseLoudness ? wxT("true") : wxT("false"));
|
||||
mUseLoudnessCheckBox->SetValidator(wxGenericValidator(&mGUIUseLoudness));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user