[haiku-commits] r38520 - haiku/trunk/src/apps/aboutsystem

  • From: yourpalal2@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 3 Sep 2010 10:40:04 +0200 (CEST)

Author: yourpalal
Date: 2010-09-03 10:40:04 +0200 (Fri, 03 Sep 2010)
New Revision: 38520
Changeset: http://dev.haiku-os.org/changeset/38520

Modified:
   haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
Log:
Fix regression in AboutSystem from r38512, expected spacing to be 0, so this is 
now requested explicitly.


Modified: haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp
===================================================================
--- haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2010-09-03 08:36:23 UTC 
(rev 38519)
+++ haiku/trunk/src/apps/aboutsystem/AboutSystem.cpp    2010-09-03 08:40:04 UTC 
(rev 38520)
@@ -591,9 +591,9 @@
        SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
 
        BLayoutBuilder::Group<>((BGroupLayout*)GetLayout())
-               .AddGroup(B_VERTICAL)
+               .AddGroup(B_VERTICAL, 0)
                        .Add(new LogoView())
-                       .AddGroup(B_VERTICAL)
+                       .AddGroup(B_VERTICAL, 0)
                                .Add(_CreateLabel("oslabel", 
B_TRANSLATE("Version:")))
                                .Add(versionView)
                                .Add(gccView)


Other related posts:

  • » [haiku-commits] r38520 - haiku/trunk/src/apps/aboutsystem - yourpalal2