diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-09 04:13:13 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-09 04:13:13 +0800 |
commit | cc631d9d37e802fec0b8ac245d037a12fc002685 (patch) | |
tree | a55fd996d9da5fac801427c360f12fc76ec49c14 /src/ephy-automation.c | |
parent | b3fed7cc16e2f03970776e0f874e94c112f4b240 (diff) | |
download | gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar.gz gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar.bz2 gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar.lz gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar.xz gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.tar.zst gsoc2013-epiphany-cc631d9d37e802fec0b8ac245d037a12fc002685.zip |
Jump to new tabs created from command lines; fixes bug #141168.
2004-05-08 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-automation.c: (impl_ephy_automation_loadurl):
Jump to new tabs created from command lines; fixes bug #141168.
Diffstat (limited to 'src/ephy-automation.c')
-rw-r--r-- | src/ephy-automation.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-automation.c b/src/ephy-automation.c index c5aa84c32..aac78e81b 100644 --- a/src/ephy-automation.c +++ b/src/ephy-automation.c @@ -89,7 +89,8 @@ impl_ephy_automation_loadurl (PortableServer_Servant _servant, if (open_in_new_tab) { - flags |= EPHY_NEW_TAB_IN_EXISTING_WINDOW; + flags |= EPHY_NEW_TAB_IN_EXISTING_WINDOW | + EPHY_NEW_TAB_JUMP; } else { @@ -101,8 +102,7 @@ impl_ephy_automation_loadurl (PortableServer_Servant _servant, flags |= EPHY_NEW_TAB_FULLSCREEN_MODE; } - ephy_shell_new_tab (ephy_shell, window, NULL, url, - flags); + ephy_shell_new_tab (ephy_shell, window, NULL, url, flags); } static void |