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
+2 -1
View File
@@ -100,8 +100,9 @@ func NewBottomPanel(p *player.Player) *BottomPanel {
_ = p.SetVolume(v)
}
bp.container = container.New(newBottomPanelLayout(500, bp.NowPlaying, bp.Controls, bp.AuxControls),
main := container.New(newBottomPanelLayout(500, bp.NowPlaying, bp.Controls, bp.AuxControls),
bp.NowPlaying, bp.Controls, bp.AuxControls)
bp.container = container.NewBorder(widgets.NewThickSeparator(), nil, nil, nil, main)
return bp
}