1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

refresh_view: drop unnecessary call to redraw_from_window

print_screen_status calls redraw_from_window, so there is no need to
call both.
This commit is contained in:
Miciah Dashiel Butler Masters 2006-02-05 01:03:24 +00:00 committed by Miciah Dashiel Butler Masters
parent 347970988d
commit 420f3072fb

View File

@ -373,5 +373,4 @@ refresh_view(struct session *ses, struct document_view *doc_view, int frames)
draw_doc(ses, doc_view, 1);
if (frames) draw_frames(ses);
print_screen_status(ses);
redraw_from_window(ses->tab);
}