aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/ephy-automation.c6
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 33f6cbdf0..ccf2d98ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
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-08 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-file-chooser.c: (ephy_file_chooser_add_pattern_filter),
(ephy_file_chooser_add_mime_filter), (ephy_file_chooser_new):
* lib/ephy-file-chooser.h:
@@ -16,7 +22,7 @@
* src/prefs-dialog.c: (prefs_download_path_button_clicked_cb):
* src/window-commands.c: (window_cmd_file_open):
- Add some filters to the file chooser dialogues.
+ Add some filters to the file chooser dialogues. Fixes bug #139418.
2004-05-08 Christian Persch <chpe@cvs.gnome.org>
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