1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-03 00:57:52 +02:00

Bump gocui

This commit is contained in:
Stefan Haller
2025-04-21 18:03:11 +02:00
parent 548d486aee
commit 6c0ee7df2b
4 changed files with 6 additions and 6 deletions

View File

@ -519,9 +519,9 @@ func (v *View) setRune(x, y int, ch rune, fgColor, bgColor Attribute) {
}
fgColor = fgColor | AttrBold
if v.HighlightInactive {
bgColor = bgColor | v.InactiveViewSelBgColor
bgColor = (bgColor & AttrStyleBits) | v.InactiveViewSelBgColor
} else {
bgColor = bgColor | v.SelBgColor
bgColor = (bgColor & AttrStyleBits) | v.SelBgColor
}
}
}