viking

webkit based web browser for Enlightenment
Log | Files | Refs | LICENSE

commit 6aab8c8bf18dcb74099b8e161727a0555f442d1c
parent e23ad741e1f75e2d3da1abf148d938d26975f7cc
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Mon, 24 Sep 2012 12:32:49 -0600

reload on navigation.

Diffstat:
Mcommands.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/commands.c b/commands.c @@ -423,9 +423,12 @@ Eina_Bool navigate(const Arg *arg, void *data) { App_Data *ad = data; - if (arg->i & NavigationForwardBack) + if (arg->i & NavigationForwardBack) { // webkit_web_view_go_back_or_forward(webview, (arg->i == NavigationBack ? -1 : 1) * (count ? count : 1)); elm_web_navigate(ad->current_web, (arg->i == NavigationBack ? -1 : 1) * (ad->count ? ad->count : 1)); + /* hack needed for tiled backing store */ + elm_web_reload(ad->current_web); + } else if (arg->i & NavigationReloadActions) // (arg->i == NavigationReload ? webkit_web_view_reload : webkit_web_view_reload_bypass_cache)(webview); (arg->i == NavigationReload ? elm_web_reload : elm_web_reload_full)(ad->current_web);