mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
fix mirc_blink_fix
the background colours were totally off with mirc_blink_fix enabled. oops. reported by wodim
This commit is contained in:
parent
1933c92532
commit
b602372e78
1 changed files with 5 additions and 2 deletions
|
|
@ -158,8 +158,11 @@ static void get_colors(int flags, int *fg, int *bg, int *attr)
|
|||
if (*bg >= 0) {
|
||||
*bg = mirc_colors[*bg % 100];
|
||||
flags &= ~GUI_PRINT_FLAG_COLOR_24_BG;
|
||||
if (settings_get_bool("mirc_blink_fix"))
|
||||
*bg = term_color256map[*bg&0xff] & ~0x08;
|
||||
if (settings_get_bool("mirc_blink_fix")) {
|
||||
if (*bg < 16) /* ansi bit flip :-( */
|
||||
*bg = (*bg&8) | (*bg&4)>>2 | (*bg&2) | (*bg&1)<<2;
|
||||
*bg = term_color256map[*bg&0xff] & 7;
|
||||
}
|
||||
}
|
||||
if (*fg >= 0) {
|
||||
*fg = mirc_colors[*fg % 100];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue