From 4b9fcb1ad0c250d4afe648ddf0219da692b013d9 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Mon, 15 Apr 2013 22:53:26 +0100 Subject: NetSurf appears to need to call hlcache_poll even if no fetches are active otherwise it sometimes gets stuck when fetching --- desktop/netsurf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/netsurf.c b/desktop/netsurf.c index dd4000bc0..120bda9e3 100644 --- a/desktop/netsurf.c +++ b/desktop/netsurf.c @@ -254,6 +254,7 @@ int netsurf_main_loop(void) if(fetch_active) schedule(0, netsurf_fetch_callback, NULL); gui_poll(fetch_active); + hlcache_poll(); } return 0; -- cgit v1.2.3