mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
add italics support; don't use standout for reverse
This commit is contained in:
parent
fc00b9e6f0
commit
0e294d5c2e
12 changed files with 98 additions and 20 deletions
|
|
@ -298,6 +298,9 @@ static int get_attr(int color)
|
|||
|
||||
if (color & ATTR_UNDERLINE) attr |= A_UNDERLINE;
|
||||
if (color & ATTR_REVERSE) attr |= A_REVERSE;
|
||||
#ifdef A_ITALIC
|
||||
if (color & ATTR_ITALIC) attr |= A_ITALIC;
|
||||
#endif
|
||||
return attr;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue