aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-home-action.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-home-action.c')
-rw-r--r--src/ephy-home-action.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ephy-home-action.c b/src/ephy-home-action.c
index 7dc7cf8f2..c2826a3bf 100644
--- a/src/ephy-home-action.c
+++ b/src/ephy-home-action.c
@@ -121,13 +121,13 @@ action_name_association (GtkAction *action,
{
ephy_link_open (EPHY_LINK (action),
address, NULL,
- EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP);
+ EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO);
}
else
{
ephy_home_action_open (action,
address,
- EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP);
+ EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO);
}
}
else if (strcmp (action_name, "FileNewWindow") == 0)
@@ -136,13 +136,13 @@ action_name_association (GtkAction *action,
{
ephy_link_open (EPHY_LINK (action),
address, NULL,
- EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP);
+ EPHY_LINK_NEW_WINDOW);
}
else
{
ephy_home_action_open (action,
address,
- EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP);
+ EPHY_LINK_NEW_WINDOW);
}
}
else if (strcmp (action_name, "GoHome") == 0)