Send SGR0 when initialising the screen. Fixes problems on terminals with BCE

(like putty) if the background colours is non-default when tmux starts. May
also fix problems when resuming a suspended tmux.
pull/1/head
Nicholas Marriott 2009-08-14 08:53:52 +00:00
parent 09cbd0c695
commit 5cf994856f
1 changed files with 3 additions and 2 deletions

5
tty.c
View File

@ -134,6 +134,9 @@ tty_start_tty(struct tty *tty)
tty_putcode(tty, TTYC_SMCUP);
tty_putcode(tty, TTYC_SGR0);
memcpy(&tty->cell, &grid_default_cell, sizeof tty->cell);
tty_putcode(tty, TTYC_SMKX);
tty_putcode(tty, TTYC_ENACS);
tty_putcode(tty, TTYC_CLEAR);
@ -142,8 +145,6 @@ tty_start_tty(struct tty *tty)
if (tty_term_has(tty->term, TTYC_KMOUS))
tty_puts(tty, "\033[?1000l");
memcpy(&tty->cell, &grid_default_cell, sizeof tty->cell);
tty->cx = UINT_MAX;
tty->cy = UINT_MAX;