diff options
Diffstat (limited to 'ui-terminal.c')
| -rw-r--r-- | ui-terminal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-terminal.c b/ui-terminal.c index cf34378..dd04f76 100644 --- a/ui-terminal.c +++ b/ui-terminal.c @@ -167,6 +167,8 @@ static bool ui_style_define(UiWin *w, int id, const char *style) { for (*value++ = '\0'; *value == ' '; value++); if (!strcasecmp(option, "reverse")) { cell_style.attr |= CELL_ATTR_REVERSE; + } else if (!strcasecmp(option, "notreverse")) { + cell_style.attr &= CELL_ATTR_REVERSE; } else if (!strcasecmp(option, "bold")) { cell_style.attr |= CELL_ATTR_BOLD; } else if (!strcasecmp(option, "notbold")) { |
