[haiku-commits] r38526 - in haiku/trunk/src/apps: aboutsystem installer

  • From: yourpalal2@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 4 Sep 2010 10:47:42 +0200 (CEST)

Author: yourpalal
Date: 2010-09-04 10:47:41 +0200 (Sat, 04 Sep 2010)
New Revision: 38526
Changeset: http://dev.haiku-os.org/changeset/38526

Modified:
   haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
   haiku/trunk/src/apps/installer/InstallerWindow.cpp
Log:
patch by 'jstreessman' fixing regressions in AboutSystem and InstallerWindow 
from r38512, thanks!


Modified: haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
===================================================================
--- haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2010-09-03 21:45:41 UTC 
(rev 38525)
+++ haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2010-09-04 08:47:41 UTC 
(rev 38526)
@@ -587,7 +587,7 @@
 
        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())

Modified: haiku/trunk/src/apps/installer/InstallerWindow.cpp
===================================================================
--- haiku/trunk/src/apps/installer/InstallerWindow.cpp  2010-09-03 21:45:41 UTC 
(rev 38525)
+++ haiku/trunk/src/apps/installer/InstallerWindow.cpp  2010-09-04 08:47:41 UTC 
(rev 38526)
@@ -236,9 +236,9 @@
        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)
                )


Other related posts:

  • » [haiku-commits] r38526 - in haiku/trunk/src/apps: aboutsystem installer - yourpalal2