Remove an useless box and move the radio buttons near the setting they alter.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38319 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adrien Destugues
2010-08-23 14:24:58 +00:00
parent 9ad52ae4cc
commit 00c81cb959
+5 -13
View File
@@ -231,21 +231,12 @@ FormatView::FormatView(const BLocale& locale)
BCheckBox* currencyLeadingZero = new BCheckBox("",
B_TRANSLATE("Leading 0"), new BMessage(kSettingsContentsModified));
BBox* formatBox = new BBox("Symbol position");
formatBox->SetLabel(B_TRANSLATE("Symbol position"));
BRadioButton* beforeRadioButton = new BRadioButton("",
B_TRANSLATE("Before"), new BMessage(kSettingsContentsModified));
BRadioButton* afterRadioButton = new BRadioButton("",
B_TRANSLATE("After"), new BMessage(kSettingsContentsModified));
formatBox->AddChild(BGroupLayoutBuilder(B_VERTICAL)
.Add(beforeRadioButton)
.Add(afterRadioButton)
.SetInsets(spacing, 0, spacing, 0)
.TopView());
_UpdateExamples();
_ParseDateFormat();
@@ -327,13 +318,14 @@ FormatView::FormatView(const BLocale& locale)
fCurrencyBox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL, spacing / 2)
.SetInsets(spacing, spacing, spacing, spacing)
.Add(currencySymbol)
.AddGroup(B_HORIZONTAL, spacing)
.AddGlue()
.Add(beforeRadioButton)
.Add(afterRadioButton)
.End()
.Add(currencyNegative)
.Add(currencyDecimal)
.Add(currencyLeadingZero)
.AddGroup(B_HORIZONTAL, spacing)
.Add(formatBox)
.AddGlue()
.End()
.View());