From 89b2005e49a539d2e10a7ed71db73fd191a00ea9 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Thu, 27 Jun 2013 23:14:35 +0000 Subject: [PATCH] Line up wxChoice controls and their labels. --- src/effects/Leveller.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/effects/Leveller.cpp b/src/effects/Leveller.cpp index 00ebd4698..ec1af7e96 100644 --- a/src/effects/Leveller.cpp +++ b/src/effects/Leveller.cpp @@ -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))