Check for animating GIF favicon only if compiled with GIF support.

svn path=/trunk/netsurf/; revision=11298
This commit is contained in:
Sven Weidauer 2011-01-12 22:07:40 +00:00
parent 9c627479ca
commit 23770014c0
1 changed files with 2 additions and 0 deletions

View File

@ -246,12 +246,14 @@ nserror favicon_callback(hlcache_handle *icon,
assert(0);
}
#ifdef WITH_GIF
if (consider_redraw && (c->data.html.favicon != NULL) && (content_get_type(c->data.html.favicon) == CONTENT_GIF)) {
union content_msg_data msg_data;
/* This is needed in order to cause animated GIFs to update their bitmap */
content_redraw(c->data.html.favicon, 0, 0, -1, -1, 0, 0, 0, 0, 1.0, 0);
content_broadcast(c, CONTENT_MSG_FAVICON_REFRESH, msg_data);
}
#endif
if (consider_done && (c->active == 0)) {
/* all objects have arrived */