diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-05-09 04:15:37 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-05-09 04:15:37 +0800 |
commit | c38d6201ee72d2cd45c5684c54ddae63ea3dc63b (patch) | |
tree | 0c2d1bd855d72b9498d181b4a8a97d19bbd64458 | |
parent | 618cefbe30fd0fa649f3c8c88a3c0afd2e24687f (diff) | |
download | gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.gz gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.zst gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | src/ephy-automation.c | 6 |
2 files changed, 10 insertions, 4 deletions
@@ -1,9 +1,15 @@ +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. + 2004-05-07 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/EphyHeaderSniffer.cpp: * embed/mozilla/EphyHeaderSniffer.h: - Use the single sign-on prompt service. + Forward nsIAuthPrompt to the single sign-on prompt implementation. 2004-05-07 Christian Persch <chpe@cvs.gnome.org> diff --git a/src/ephy-automation.c b/src/ephy-automation.c index fd9e33257..1b2706bb6 100644 --- a/src/ephy-automation.c +++ b/src/ephy-automation.c @@ -85,7 +85,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 { @@ -97,8 +98,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 |