diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-08-23 23:51:45 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2012-09-01 02:34:01 +0800 |
commit | 3005b30e3f657618f506eac9320cf54b86b9c0ed (patch) | |
tree | 249c8c730d1f35e1a14dba542d4696f765580a47 /embed/ephy-web-view.c | |
parent | 09b60aea4d1ad8349e18b17cfb3f7ca5d68498cf (diff) | |
download | gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar.gz gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar.bz2 gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar.lz gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar.xz gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.tar.zst gsoc2013-epiphany-3005b30e3f657618f506eac9320cf54b86b9c0ed.zip |
Add about:overview to actually go to overview mode
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index bcef40507..6a307e43c 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -4078,7 +4078,7 @@ ephy_web_view_save (EphyWebView *view, const char *uri) * ephy_web_view_load_homepage: * @view: an #EphyWebView * - * Loads the homepage, which is hardcoded to be "about:blank" + * Loads the homepage, which is hardcoded to be "about:overview" * **/ void @@ -4088,7 +4088,7 @@ ephy_web_view_load_homepage (EphyWebView *view) ephy_web_view_set_visit_type (view, EPHY_PAGE_VISIT_HOMEPAGE); - ephy_web_view_load_url (view, "about:blank"); + ephy_web_view_load_url (view, "about:overview"); } /** |