1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-05 15:15:49 +02:00

set help panel fgcolor to white

This commit is contained in:
Dawid Dziurla 2018-09-04 15:25:54 +02:00
parent f29c81fb5c
commit 7b84c162f4
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

View File

@ -90,6 +90,7 @@ func (gui *Gui) handleHelp(g *gocui.Gui, v *gocui.View) error {
x0, y0, x1, y1 := gui.getConfirmationPanelDimensions(g, content)
helpView, _ := g.SetView("help", x0, y0, x1, y1-1, 0)
helpView.Title = strings.Title(gui.Tr.SLocalize("help"))
helpView.FgColor = gocui.ColorWhite
if err := gui.renderHelpOptions(g); err != nil {
return err