1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00

Line up wxChoice controls and their labels.

This commit is contained in:
v.audacity 2013-06-27 23:14:35 +00:00
parent d579be476a
commit 89b2005e49

View File

@ -216,21 +216,16 @@ void LevellerDialog::PopulateOrExchange(ShuttleGui & S)
S.SetBorder(5);
S.AddSpace(5);
S.StartHorizontalLay();
S.StartMultiColumn(2);
{
S.TieChoice(_("Degree of Leveling:"),
mLevellerNumPassesChoiceIndex,
&numPasses);
}
S.EndHorizontalLay();
S.StartHorizontalLay();
{
S.TieChoice(_("Noise Threshold:"),
mLevellerDbChoiceIndex,
&db);
}
S.EndHorizontalLay();
S.EndMultiColumn();
}
void LevellerDialog::OnPreview(wxCommandEvent & WXUNUSED(event))