aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-automation.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-05-09 04:15:37 +0800
committerChristian Persch <chpe@src.gnome.org>2004-05-09 04:15:37 +0800
commitc38d6201ee72d2cd45c5684c54ddae63ea3dc63b (patch)
tree0c2d1bd855d72b9498d181b4a8a97d19bbd64458 /src/ephy-automation.c
parent618cefbe30fd0fa649f3c8c88a3c0afd2e24687f (diff)
downloadgsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar
gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.gz
gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.bz2
gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.lz
gsoc2013-epiphany-c38d6201ee72d2cd45c5684c54ddae63ea3dc63b.tar.xz
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.
Diffstat (limited to 'src/ephy-automation.c')
-rw-r--r--src/ephy-automation.c6
1 files changed, 3 insertions, 3 deletions
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