1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

Merge branch 'master' into hotfix/windows-support

This commit is contained in:
Jesse Duffield 2018-08-07 14:05:08 +10:00
commit 9bfaa9f62c

2
gui.go
View File

@ -137,7 +137,7 @@ func keybindings(g *gocui.Gui) error {
func layout(g *gocui.Gui) error {
g.Highlight = true
g.SelFgColor = gocui.ColorWhite | gocui.AttrBold
if runtime.GOOS == "windows" {
if runtime.GOOS != "windows" {
g.FgColor = gocui.ColorBlack
}
width, height := g.Size()