Use the single parameter version of SetInsets()

While I'm at it, I can reduce the LayoutBuilder indent by 1.
This commit is contained in:
John Scipione 2013-03-16 16:11:12 -04:00
parent c0778509d2
commit 163a2afd4f

View File

@ -58,18 +58,15 @@ OpenWindow::OpenWindow()
SetLayout(new BGroupLayout(B_HORIZONTAL));
AddChild(BLayoutBuilder::Group<>()
.AddGroup(B_VERTICAL)
.Add(field)
.AddGroup(B_HORIZONTAL)
.Add(cancelButton)
.Add(probeFileButton)
.AddGlue()
.Add(probeDeviceButton)
.End()
.SetInsets(B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING,
B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING)
AddChild(BLayoutBuilder::Group<>(B_VERTICAL, B_USE_SMALL_SPACING)
.Add(field)
.AddGroup(B_HORIZONTAL)
.Add(cancelButton)
.Add(probeFileButton)
.AddGlue()
.Add(probeDeviceButton)
.End()
.SetInsets(B_USE_DEFAULT_SPACING)
);
CenterOnScreen();