adding thick separator to navigation bar and bottom panel

This commit is contained in:
Drew Weymouth
2023-01-03 15:57:35 -08:00
parent ede625f33a
commit 44536b8bef
4 changed files with 36 additions and 2 deletions
+4 -1
View File
@@ -57,7 +57,10 @@ func NewBrowsingPane(app *backend.App) *BrowsingPane {
b.forward = widget.NewButtonWithIcon("", theme.NavigateNextIcon(), b.GoForward)
b.curPage = &blankPage{}
b.container = container.NewBorder(
container.NewHBox(b.back, b.forward, b.searchBar),
container.NewVBox(
container.NewHBox(b.back, b.forward, b.searchBar),
widgets.NewThickSeparator(),
),
nil, nil, nil, b.curPage)
return b
}