Fix sixel not rendering on attach.

pull/3592/head
topcat001 2023-04-09 19:47:53 -07:00
parent 8cac3ec866
commit 4915c4c8cf
1 changed files with 4 additions and 0 deletions

4
tty.c
View File

@ -484,6 +484,10 @@ tty_update_features(struct tty *tty)
tty_puts(tty, tty_term_string(tty->term, TTYC_ENFCS));
if (tty->term->flags & TERM_VT100LIKE)
tty_puts(tty, "\033[?7727h");
/* tty features might have changed since the first draw during attach.
*/
c->flags |= CLIENT_REDRAWWINDOW;
}
void