Copy the 256-colour flag into the tty saved cell as well as the actual colour,

otherwise colour 8 isn't reset properly.
pull/1/head
Nicholas Marriott 2009-06-27 12:57:14 +00:00
parent 916669a244
commit 2660692fb1
1 changed files with 4 additions and 0 deletions

4
tty.c
View File

@ -1005,6 +1005,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc)
(gc->flags & GRID_FLAG_FG256) != (tc->flags & GRID_FLAG_FG256)) {
tty_attributes_fg(tty, gc);
tc->fg = fg;
tc->flags &= ~GRID_FLAG_FG256;
tc->flags |= gc->flags & GRID_FLAG_FG256;
}
/* Set background colour. */
@ -1012,6 +1014,8 @@ tty_attributes(struct tty *tty, const struct grid_cell *gc)
(gc->flags & GRID_FLAG_BG256) != (tc->flags & GRID_FLAG_BG256)) {
tty_attributes_bg(tty, gc);
tc->bg = bg;
tc->flags &= ~GRID_FLAG_BG256;
tc->flags |= gc->flags & GRID_FLAG_BG256;
}
}