1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 16:48:44 +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.SetBorder(5);
S.AddSpace(5); S.AddSpace(5);
S.StartHorizontalLay(); S.StartMultiColumn(2);
{ {
S.TieChoice(_("Degree of Leveling:"), S.TieChoice(_("Degree of Leveling:"),
mLevellerNumPassesChoiceIndex, mLevellerNumPassesChoiceIndex,
&numPasses); &numPasses);
}
S.EndHorizontalLay();
S.StartHorizontalLay();
{
S.TieChoice(_("Noise Threshold:"), S.TieChoice(_("Noise Threshold:"),
mLevellerDbChoiceIndex, mLevellerDbChoiceIndex,
&db); &db);
} }
S.EndHorizontalLay(); S.EndMultiColumn();
} }
void LevellerDialog::OnPreview(wxCommandEvent & WXUNUSED(event)) void LevellerDialog::OnPreview(wxCommandEvent & WXUNUSED(event))