Fixed help menu background

This commit is contained in:
Caleb Bassi 2018-02-21 03:50:18 -08:00
parent 096182de4d
commit 4deb42706c
1 changed files with 1 additions and 1 deletions

View File

@ -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))
}
}