Bypass the cache when reloading

This commit is contained in:
Pierre Pronchery 2009-10-24 14:59:35 +00:00
parent 0c91c8c33f
commit af25a78243

View File

@ -189,7 +189,10 @@ void ghtml_refresh(GtkWidget * ghtml)
void ghtml_reload(GtkWidget * ghtml) void ghtml_reload(GtkWidget * ghtml)
{ {
ghtml_refresh(ghtml); GtkWidget * view;
view = g_object_get_data(G_OBJECT(ghtml), "view");
webkit_web_view_reload_bypass_cache(WEBKIT_WEB_VIEW(view));
} }