Interpret ESC[3J as if ESC[2J
This commit is contained in:
parent
b513e4ba93
commit
e0c46a41a2
@ -534,7 +534,7 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
term->cursor_row, term->cursor_col);
|
term->cursor_row, term->cursor_col);
|
||||||
|
|
||||||
/* Entire screen */
|
/* Entire screen */
|
||||||
else if (argv[0] == 2)
|
else if (argv[0] == 2 || argv[0] == 3)
|
||||||
guac_terminal_clear_range(term,
|
guac_terminal_clear_range(term,
|
||||||
0, 0, term->term_height - 1, term->term_width - 1);
|
0, 0, term->term_height - 1, term->term_width - 1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user