Do not set cursor colour to default unless it has been changed, GitHub

issue 2013.
pull/2014/head
nicm 2019-12-11 12:13:37 +00:00
parent 55eb3e4773
commit f733d3f3eb
1 changed files with 4 additions and 2 deletions

2
tty.c
View File

@ -335,6 +335,7 @@ tty_start_tty(struct tty *tty)
tty->flags |= TTY_STARTED;
tty_invalidate(tty);
if (*tty->ccolour != '\0')
tty_force_cursor_colour(tty, "");
tty->mouse_drag_flag = 0;
@ -381,6 +382,7 @@ tty_stop_tty(struct tty *tty)
}
if (tty->mode & MODE_BRACKETPASTE)
tty_raw(tty, "\033[?2004l");
if (*tty->ccolour != '\0')
tty_raw(tty, tty_term_string(tty->term, TTYC_CR));
tty_raw(tty, tty_term_string(tty->term, TTYC_CNORM));