mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-19 09:30:52 +02: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:
parent
f13e621bc1
commit
4d24c0249b
@ -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( RemoveDC, bool, wxT("RemoveDcOffset"), true, false, true, 1 );
|
||||||
Param( ApplyGain, bool, wxT("ApplyGain"), true, false, true, 1 );
|
Param( ApplyGain, bool, wxT("ApplyGain"), true, false, true, 1 );
|
||||||
Param( StereoInd, bool, wxT("StereoIndependent"), false, 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)
|
BEGIN_EVENT_TABLE(EffectNormalize, wxEvtHandler)
|
||||||
EVT_CHECKBOX(wxID_ANY, EffectNormalize::OnUpdateUI)
|
EVT_CHECKBOX(wxID_ANY, EffectNormalize::OnUpdateUI)
|
||||||
@ -368,7 +368,7 @@ void EffectNormalize::PopulateOrExchange(ShuttleGui & S)
|
|||||||
}
|
}
|
||||||
S.EndHorizontalLay();
|
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"));
|
mUseLoudness ? wxT("true") : wxT("false"));
|
||||||
mUseLoudnessCheckBox->SetValidator(wxGenericValidator(&mGUIUseLoudness));
|
mUseLoudnessCheckBox->SetValidator(wxGenericValidator(&mGUIUseLoudness));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user