diff options
author | Danilo Šegan <danilo@gnome.org> | 2011-04-19 03:52:37 +0800 |
---|---|---|
committer | Danilo Šegan <danilo@gnome.org> | 2011-04-19 03:52:37 +0800 |
commit | bfc6e9f79606c6143ab106d00653ab6fc759c877 (patch) | |
tree | 2c81a573f4fe4dcb4882938f8f850e39c7e55370 /src | |
parent | af770e0804aa904ff872f84d42c51aec93d7eea1 (diff) | |
download | gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar.gz gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar.bz2 gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar.lz gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar.xz gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.tar.zst gsoc2013-epiphany-bfc6e9f79606c6143ab106d00653ab6fc759c877.zip |
Open new tabs to the right of the current one even for location entry
Ctrl+Enter actions.
Bug #647976
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index b7da95576..b4e2a28a1 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -3504,7 +3504,7 @@ ephy_window_open_link (EphyLink *link, } else { - ntflags |= EPHY_NEW_TAB_IN_EXISTING_WINDOW; + ntflags |= EPHY_NEW_TAB_IN_EXISTING_WINDOW | EPHY_NEW_TAB_APPEND_AFTER; } new_embed = ephy_shell_new_tab |