viking

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

commit f73e0bcd2e3012a90b0f0fd5cd45dcb343e79a0b
parent b59d6806a0db4e60201fdd38f122d258fae2429a
Author: Kyle Milz <kmilz@ucalgary.ca>
Date:   Mon, 24 Sep 2012 16:38:50 -0600

Revert "reload on navigation."

this doesn't much help much

This reverts commit 6aab8c8bf18dcb74099b8e161727a0555f442d1c.

Conflicts:
	commands.c

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

diff --git a/commands.c b/commands.c @@ -422,12 +422,9 @@ 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->cur_buf->web, (arg->i == NavigationBack ? -1 : 1) * (ad->count ? ad->count : 1)); - /* hack needed for tiled backing store */ - elm_web_reload(ad->cur_buf->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->cur_buf->web);