mirror of
https://github.com/tmate-io/tmate.git
synced 2026-01-23 02:24:06 +00:00
When reinitialising the screen, do not omit to clear the last line.
This commit is contained in:
parent
084d07f4eb
commit
8c497ecac0
1 changed files with 1 additions and 1 deletions
2
screen.c
2
screen.c
|
|
@ -54,7 +54,7 @@ screen_reinit(struct screen *s)
|
|||
|
||||
screen_reset_tabs(s);
|
||||
|
||||
grid_clear_lines(s->grid, s->grid->hsize, s->grid->sy - 1);
|
||||
grid_clear_lines(s->grid, s->grid->hsize, s->grid->sy);
|
||||
|
||||
screen_clear_selection(s);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue