1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-17 22:32:58 +02:00

invert platform check

This commit is contained in:
Jesse Duffield 2018-08-07 14:01:41 +10:00
parent a4f4a16237
commit 28caaf6f1c

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()