When reinitialising the screen, do not omit to clear the last line.

pull/1/head
Nicholas Marriott 2009-07-08 05:56:11 +00:00
parent 084d07f4eb
commit 8c497ecac0
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}