From 4deb42706c1af3aa81044112593d002f18f733c5 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Wed, 21 Feb 2018 03:50:18 -0800 Subject: [PATCH] Fixed help menu background --- widgets/help.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/help.go b/widgets/help.go index 90eeec9..1ab09c2 100644 --- a/widgets/help.go +++ b/widgets/help.go @@ -46,7 +46,7 @@ func (hm *HelpMenu) Buffer() *ui.Buffer { for y, line := range strings.Split(KEYBINDS, "\n") { for x, char := range line { - buf.SetCell(x+1, y, ui.NewCell(char, ui.Color(7), ui.ColorDefault)) + buf.SetCell(x+1, y, ui.NewCell(char, ui.Color(7), hm.Bg)) } }