1
0
mirror of https://github.com/xgi/castero synced 2024-11-10 15:28:45 +01:00

use proper color pair for inactive selected menu items

This commit is contained in:
Jake Robertson 2019-12-10 15:17:36 -05:00
parent 818223e409
commit bbb10e0d01
No known key found for this signature in database
GPG Key ID: 15FF1380B7D5C715

@ -128,7 +128,7 @@ class Menu(ABC):
if self._active:
attr = curses.color_pair(2)
else:
attr = curses.color_pair(3)
attr = curses.color_pair(4)
else:
attr = attr | item['attr']