1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

redraw_terminal_cls instead of redraw_terminal in delete_window.

On http://pcarena.pl/ the msgbox is shown saying,
that document.getElementById is not a function.
The "ghosts" remained after pressing OK.
This commit is contained in:
witekfl 2011-06-17 14:33:46 +02:00
parent fe83703714
commit 03c698e926

View File

@ -84,7 +84,7 @@ delete_window(struct window *win)
set_abort_term_event(&ev);
win->handler(win, &ev);
mem_free_if(win->data);
redraw_terminal(win->term);
redraw_terminal_cls(win->term);
mem_free(win);
}