Notification preflet: add margin to views in TabView

This commit is contained in:
Philippe Saint-Pierre 2012-07-23 21:50:23 -04:00
parent dc321a67d6
commit e32c26f1c7
3 changed files with 3 additions and 1 deletions

View File

@ -65,6 +65,7 @@ DisplayView::DisplayView(SettingsHost* host)
.Add(fIconSizeField->CreateLabelLayoutItem(), 0, 1)
.Add(fIconSizeField->CreateMenuBarLayoutItem(), 1, 1)
.Add(BSpaceLayoutItem::CreateGlue(), 0, 2, 2, 1)
.SetInsets(inset, inset, inset, inset)
);
}

View File

@ -107,7 +107,7 @@ GeneralView::GeneralView(SettingsHost* host)
.End()
.End()
.End()
.SetInsets(inset, inset, inset, inset)
.AddGlue()
);
}

View File

@ -118,6 +118,7 @@ NotificationsView::NotificationsView()
.End()
.Add(fApplications)
.Add(fNotifications)
.SetInsets(inset, inset, inset, inset)
);
}