1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

Don't clear the window before redrawing, it's faster to do it at the same

time window is being redrawn.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1965 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-03 14:50:43 +00:00 committed by cras
parent 25b04419d4
commit d4d72e5583

View File

@ -1201,8 +1201,7 @@ void textbuffer_view_redraw(TEXT_BUFFER_VIEW_REC *view)
if (view->window != NULL) {
view->dirty = FALSE;
term_window_clear(view->window);
view_draw_top(view, view->height, FALSE);
view_draw_top(view, view->height, TRUE);
term_refresh(view->window);
}
}