Skip to content

Commit

Permalink
tune visual feedback of numeric or composed character input
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Mar 22, 2022
1 parent 8160240 commit 8b363bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/term.c
Original file line number Diff line number Diff line change
Expand Up @@ -3230,12 +3230,12 @@ term_paint(void)
newchars[curs_x].attr.attr &= ~(TATTR_WIDE | TATTR_EXPAND);
newchars[curs_x].attr = CATTR_DEFAULT;
if (what >= 4) {
newchars[curs_x].attr.attr |= ATTR_ULCOLOUR;
newchars[curs_x].attr.attr |= ATTR_ULCOLOUR | ATTR_BOLD;
newchars[curs_x].attr.ulcolr = RGB(255, 0, 0);
}
else {
newchars[curs_x].attr.attr |= ATTR_REVERSE | ATTR_DIM;
newchars[curs_x].attr.attr |= ATTR_ULCOLOUR;
newchars[curs_x].attr.attr |= ATTR_ULCOLOUR | ATTR_BOLD;
newchars[curs_x].attr.ulcolr = RGB(255, 0, 0);
}
switch (what) {
Expand Down

0 comments on commit 8b363bc

Please sign in to comment.