mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue