[haiku-commits] r41198 - haiku/trunk/src/apps/showimage

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 8 Apr 2011 14:08:40 +0200 (CEST)

Author: stippi
Date: 2011-04-08 14:08:39 +0200 (Fri, 08 Apr 2011)
New Revision: 41198
Changeset: https://dev.haiku-os.org/changeset/41198

Modified:
   haiku/trunk/src/apps/showimage/ToolBarView.cpp
Log:
Decreased the unused spacing in the tool bar.


Modified: haiku/trunk/src/apps/showimage/ToolBarView.cpp
===================================================================
--- haiku/trunk/src/apps/showimage/ToolBarView.cpp      2011-04-08 05:11:23 UTC 
(rev 41197)
+++ haiku/trunk/src/apps/showimage/ToolBarView.cpp      2011-04-08 12:08:39 UTC 
(rev 41198)
@@ -16,7 +16,8 @@
        BGroupView(B_HORIZONTAL)
 {
        float inset = ceilf(be_control_look->DefaultItemSpacing() / 2);
-       GroupLayout()->SetInsets(inset, inset, inset, inset);
+       GroupLayout()->SetInsets(inset, 2, inset, 3);
+       GroupLayout()->SetSpacing(inset);
 
        GroupLayout()->AddItem(BSpaceLayoutItem::CreateGlue());
 


Other related posts:

  • » [haiku-commits] r41198 - haiku/trunk/src/apps/showimage - superstippi