diff options
author | Zan Dobersek <zandobersek@gmail.com> | 2012-08-01 22:58:36 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-08-01 22:59:17 +0800 |
commit | ca2a07b004ac4462867512892bfa0d772f3abc77 (patch) | |
tree | 10d89dd6fde243e3fedd84909024459670f9b474 /src | |
parent | 9d70148b27ab6bae331961664ce4e1d5b47c1f32 (diff) | |
download | gsoc2013-epiphany-ca2a07b004ac4462867512892bfa0d772f3abc77.tar.gz gsoc2013-epiphany-ca2a07b004ac4462867512892bfa0d772f3abc77.tar.zst gsoc2013-epiphany-ca2a07b004ac4462867512892bfa0d772f3abc77.zip |
ephy-home-action: add implicit NEW_TAB flag
The NewTab action is always used to new an empty tab now, so just
acknowledge the fact.
Signed-off-by: Xan Lopez <xan@igalia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-home-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-home-action.c b/src/ephy-home-action.c index 37d164c8a..7518108b9 100644 --- a/src/ephy-home-action.c +++ b/src/ephy-home-action.c @@ -48,7 +48,7 @@ action_name_association (GtkAction *action, { ephy_home_action_open (action, address, - EPHY_LINK_JUMP_TO | EPHY_LINK_HOME_PAGE); + EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_HOME_PAGE); } } |