From 40a2f8622cceec6b0a34027ba299381f7d24a49d Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Tue, 19 Jun 2012 23:46:57 +0000 Subject: fix history redraw by calling the window specific redraw function from gui_poll(), also switch hotlist redraw to to hotlist specific redraw function. svn path=/trunk/netsurf/; revision=13977 --- atari/gui.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'atari/gui.c') diff --git a/atari/gui.c b/atari/gui.c index d0039d8a9..fef8fcb62 100755 --- a/atari/gui.c +++ b/atari/gui.c @@ -65,7 +65,8 @@ #include "atari/statusbar.h" #include "atari/toolbar.h" #include "atari/verify_ssl.h" -#include "atari/hotlist.h" +#include "atari/hotlist.h" +#include "atari/history.h" #include "atari/login.h" #include "atari/global_evnt.h" #include "atari/encoding.h" @@ -149,7 +150,8 @@ void gui_poll(bool active) if( evnt.timer != 0 && !active ){ /* this suits for stuff with lower priority */ /* TBD: really be spare on redraws??? */ - atari_treeview_redraw( hl.tv ); + hotlist_redraw(); + global_history_redraw(); } } -- cgit v1.2.3