diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-06 23:57:26 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:47 +0800 |
commit | bb62057c7da3fce1f7ddcbe3d235a220cee13a48 (patch) | |
tree | b88bb9190cba2207d23058a55f7da59dd94082a8 | |
parent | e9463a9dc1fd77f741d3cc6a6c335db9733ebdf1 (diff) | |
download | gsoc2013-epiphany-bb62057c7da3fce1f7ddcbe3d235a220cee13a48.tar.gz gsoc2013-epiphany-bb62057c7da3fce1f7ddcbe3d235a220cee13a48.tar.zst gsoc2013-epiphany-bb62057c7da3fce1f7ddcbe3d235a220cee13a48.zip |
ephy-history-service: default handler for visit-url should be FALSE
So that AFTER handlers are executed as well
-rw-r--r-- | lib/history/ephy-history-service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/history/ephy-history-service.c b/lib/history/ephy-history-service.c index 4c9e44179..80b0f99a2 100644 --- a/lib/history/ephy-history-service.c +++ b/lib/history/ephy-history-service.c @@ -134,7 +134,7 @@ impl_visit_url (EphyHistoryService *self, const char *url) visit, NULL, NULL); ephy_history_page_visit_free (visit); - return TRUE; + return FALSE; } static void |