diff options
-rwxr-xr-x | poezio/theming.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/poezio/theming.py b/poezio/theming.py index e5095507..f0309f65 100755 --- a/poezio/theming.py +++ b/poezio/theming.py @@ -487,6 +487,8 @@ def to_curses_attr( curses, 'A_ITALIC') else curses.A_REVERSE) if 'a' in additional_val: curses_pair = curses_pair | curses.A_BLINK + if 'r' in additional_val: + curses_pair = curses_pair | curses.A_REVERSE return curses_pair |