remove separators and make page background darker

This commit is contained in:
Drew Weymouth
2023-01-03 16:26:03 -08:00
parent 44536b8bef
commit e5c9920c12
4 changed files with 47 additions and 13 deletions
+1 -2
View File
@@ -100,9 +100,8 @@ func NewBottomPanel(p *player.Player) *BottomPanel {
_ = p.SetVolume(v)
}
main := container.New(newBottomPanelLayout(500, bp.NowPlaying, bp.Controls, bp.AuxControls),
bp.container = 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
}