mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Fix bold on monochrome terminals.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4373 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
66ae6d0876
commit
406c70c530
@ -339,7 +339,7 @@ void term_set_color(TERM_WINDOW *window, int col)
|
||||
/* bold */
|
||||
if (col & 0x08)
|
||||
col |= ATTR_BOLD;
|
||||
else if (col & ATTR_BOLD)
|
||||
if (col & ATTR_BOLD)
|
||||
terminfo_set_bold();
|
||||
|
||||
/* underline */
|
||||
|
Loading…
Reference in New Issue
Block a user