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