diff options
-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 |