RGB colours shouldn't be mixed up with aixterm colours, return before

that happens when working out if they are supported.
pull/325/head
nicm 2016-03-03 12:58:15 +00:00
parent b8a102d26f
commit bcb41a09b3
1 changed files with 4 additions and 0 deletions

4
tty.c
View File

@ -1569,6 +1569,8 @@ tty_check_fg(struct tty *tty, struct grid_cell *gc)
gc->flags |= GRID_FLAG_FG256;
gc->fg = colour_find_rgb(rgb->r, rgb->g, rgb->b);
}
else
return;
}
colours = tty_term_number(tty->term, TTYC_COLORS);
@ -1612,6 +1614,8 @@ tty_check_bg(struct tty *tty, struct grid_cell *gc)
gc->flags |= GRID_FLAG_BG256;
gc->bg = colour_find_rgb(rgb->r, rgb->g, rgb->b);
}
else
return;
}
colours = tty_term_number(tty->term, TTYC_COLORS);