1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-15 15:50:54 +02:00

Bug 2498 - Loudness Normalization always displays LUFS on launch

Problem:
On opening, the units were always LUFS, and the "treat stereo as dual-mono" check box was always available.

Fix:
On opening, adjust the controls which depend on the value of the Normalize choice.
This commit is contained in:
David Bailes 2020-07-09 15:48:01 +01:00
parent c31a034157
commit 5b4c9b3425

View File

@ -391,7 +391,9 @@ bool EffectLoudness::TransferDataToWindow()
return false;
}
UpdateUI();
// adjust controls which depend on mchoice
wxCommandEvent dummy;
OnChoice(dummy);
return true;
}