patch by 'jstreessman' fixing regressions in AboutSystem and InstallerWindow from r38512, thanks!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38526 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alex Wilson 2010-09-04 08:47:41 +00:00
parent 688768804f
commit da81ea91d7
2 changed files with 3 additions and 3 deletions

View File

@ -587,7 +587,7 @@ AboutView::AboutView()
const float offset = 5;
SetLayout(new BGroupLayout(B_HORIZONTAL));
SetLayout(new BGroupLayout(B_HORIZONTAL, 0));
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
BLayoutBuilder::Group<>((BGroupLayout*)GetLayout())

View File

@ -236,9 +236,9 @@ InstallerWindow::InstallerWindow()
float spacing = be_control_look->DefaultItemSpacing();
SetLayout(new BGroupLayout(B_HORIZONTAL));
AddChild(BGroupLayoutBuilder(B_VERTICAL)
AddChild(BGroupLayoutBuilder(B_VERTICAL, 0)
.Add(mainMenu)
.Add(BGroupLayoutBuilder(B_HORIZONTAL)
.Add(BGroupLayoutBuilder(B_HORIZONTAL, 0)
.Add(logoView)
.Add(fStatusView)
)