Implement bypassing cache when reloading with Shift

This commit is contained in:
Christian Dywan 2009-03-04 23:23:23 +01:00
parent 40f36328c2
commit 7708e90214
2 changed files with 8 additions and 1 deletions

View file

@ -73,6 +73,10 @@ webkit_web_view_zoom_out (WebKitWebView* web_view);
#endif
#if !WEBKIT_CHECK_VERSION (1, 1, 1)
#define webkit_web_view_reload_bypass_cache webkit_web_view_reload
#endif
G_END_DECLS
#endif /* __COMPAT_H__ */

View file

@ -2347,7 +2347,10 @@ midori_view_reload (MidoriView* view,
{
g_return_if_fail (MIDORI_IS_VIEW (view));
if (from_cache)
webkit_web_view_reload (WEBKIT_WEB_VIEW (view->web_view));
else
webkit_web_view_reload_bypass_cache (WEBKIT_WEB_VIEW (view->web_view));
}
/**