1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-13 05:03:45 -04: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:
Ailin Nemui 2014-07-31 02:34:18 +02:00
parent 1933c92532
commit b602372e78

View File

@ -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];