1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 08:59:28 +02:00

Meter options now in horizontal layout, so reducing wasted white space.

This commit is contained in:
james.k.crook@gmail.com 2014-10-04 14:50:13 +00:00
parent 96417b912e
commit 2c76f78760

View File

@ -1490,6 +1490,8 @@ void Meter::OnPreferences(wxCommandEvent & WXUNUSED(event))
} }
S.EndStatic(); S.EndStatic();
S.StartHorizontalLay();
{
S.StartStatic(_("Meter Style"), 0); S.StartStatic(_("Meter Style"), 0);
{ {
S.StartVerticalLay(); S.StartVerticalLay();
@ -1537,7 +1539,8 @@ void Meter::OnPreferences(wxCommandEvent & WXUNUSED(event))
S.EndVerticalLay(); S.EndVerticalLay();
} }
S.EndStatic(); S.EndStatic();
}
S.EndHorizontalLay();
S.AddStandardButtons(); S.AddStandardButtons();
} }
S.EndVerticalLay(); S.EndVerticalLay();