mirror of
https://github.com/tmux/tmux.git
synced 2024-11-04 18:08:48 +00:00
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.
This commit is contained in:
parent
09cbd0c695
commit
5cf994856f
5
tty.c
5
tty.c
@ -134,6 +134,9 @@ tty_start_tty(struct tty *tty)
|
|||||||
|
|
||||||
tty_putcode(tty, TTYC_SMCUP);
|
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_SMKX);
|
||||||
tty_putcode(tty, TTYC_ENACS);
|
tty_putcode(tty, TTYC_ENACS);
|
||||||
tty_putcode(tty, TTYC_CLEAR);
|
tty_putcode(tty, TTYC_CLEAR);
|
||||||
@ -142,8 +145,6 @@ tty_start_tty(struct tty *tty)
|
|||||||
if (tty_term_has(tty->term, TTYC_KMOUS))
|
if (tty_term_has(tty->term, TTYC_KMOUS))
|
||||||
tty_puts(tty, "\033[?1000l");
|
tty_puts(tty, "\033[?1000l");
|
||||||
|
|
||||||
memcpy(&tty->cell, &grid_default_cell, sizeof tty->cell);
|
|
||||||
|
|
||||||
tty->cx = UINT_MAX;
|
tty->cx = UINT_MAX;
|
||||||
tty->cy = UINT_MAX;
|
tty->cy = UINT_MAX;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user