Decreased the unused spacing in the tool bar.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41198 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2011-04-08 12:08:39 +00:00
parent 5987b2a380
commit 65b917918b

View File

@ -16,7 +16,8 @@ ToolBarView::ToolBarView(BRect frame)
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());