summaryrefslogtreecommitdiff
path: root/atari/gui.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-06-19 23:46:57 +0000
committerOle Loots <ole@monochrom.net>2012-06-19 23:46:57 +0000
commit40a2f8622cceec6b0a34027ba299381f7d24a49d (patch)
tree85ae3dea18a74595f909fab4208735eff245f07e /atari/gui.c
parent3b5c782c16a3aef9ddbb7e1234575a02ec0df65a (diff)
downloadnetsurf-40a2f8622cceec6b0a34027ba299381f7d24a49d.tar.gz
netsurf-40a2f8622cceec6b0a34027ba299381f7d24a49d.tar.bz2
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
Diffstat (limited to 'atari/gui.c')
-rwxr-xr-xatari/gui.c6
1 files changed, 4 insertions, 2 deletions
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();
}
}