summaryrefslogtreecommitdiffstats
path: root/widgets/help.go
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-02-21 03:50:18 -0800
committerCaleb Bassi <calebjbassi@gmail.com>2018-02-21 03:50:18 -0800
commit4deb42706c1af3aa81044112593d002f18f733c5 (patch)
tree9e1f101b680c669e1e7daf6a96e8fdb6dd2a172e /widgets/help.go
parent096182de4d1a07f0d593a79b2f7ce3650c59aef1 (diff)
Fixed help menu background
Diffstat (limited to 'widgets/help.go')
-rw-r--r--widgets/help.go2
1 files changed, 1 insertions, 1 deletions
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))
}
}