tty and curses: support italic as text attribute

This commit is contained in:
Patric Mueller
2022-09-04 22:33:25 +02:00
parent 601dba5279
commit 8bf5654eed
5 changed files with 19 additions and 2 deletions

View File

@@ -748,6 +748,9 @@ curses_convert_attr(int attr)
case ATR_INVERSE:
curses_attr = A_REVERSE;
break;
case ATR_ITALIC:
curses_attr = A_ITALIC;
break;
default:
curses_attr = A_NORMAL;
}