Shrink Media preflet main window by removing doubled spacing in one place, and using default spacing (11.0f) in place of a custom spacing (14.0f).

+alpha


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41781 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alex Wilson 2011-05-27 21:51:39 +00:00
parent 9000a31cc1
commit c67a3f98ab

View File

@ -403,10 +403,11 @@ MediaWindow::InitWindow()
// Layout all views
BLayoutBuilder::Group<>(this, B_HORIZONTAL)
.SetInsets(14, 14, 14, 14)
.SetInsets(B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING,
B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING)
.Add(scrollView)
.AddGroup(B_VERTICAL)
.SetInsets(14, 0, 0, 0)
.SetInsets(0, 0, 0, 0)
.Add(fTitleView)
.Add(fContentLayout);