diff options
author | Xan Lopez <xan@gnome.org> | 2009-06-12 07:41:11 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-06-12 07:41:11 +0800 |
commit | ea5a1275dc414d8989e82a096ecb2f1da50566ea (patch) | |
tree | bf0492e9efd5f6d7bc00f599887f3556cd6145c0 /src | |
parent | 905111b75a1b400a1fe4bd60c191e21449923f77 (diff) | |
download | gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar.gz gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar.bz2 gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar.lz gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar.xz gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.tar.zst gsoc2013-epiphany-ea5a1275dc414d8989e82a096ecb2f1da50566ea.zip |
ephy-shell.c: do not set typed address when opening a new tab.
Fixes missing URI before load-committed but gives weird problems with
about:blank getting stuck, need to think this through.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-shell.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 21daf4fe5..d097f4726 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -517,9 +517,6 @@ ephy_shell_new_tab_full (EphyShell *shell, } else if (flags & EPHY_NEW_TAB_OPEN_PAGE) { - ephy_web_view_set_typed_address (EPHY_GET_EPHY_WEB_VIEW_FROM_EMBED (embed), - webkit_network_request_get_uri (request), - EPHY_WEB_VIEW_ADDRESS_EXPIRE_NEXT); ephy_web_view_load_request (EPHY_WEB_VIEW (EPHY_GET_WEBKIT_WEB_VIEW_FROM_EMBED (embed)), request); |