aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 1b912bcbb..ed1a15706 100644
--- a/src/ephy-home-action.c
+++ b/src/ephy-home-action.c
@@ -122,13 +122,13 @@ action_name_association (GtkAction *action,
{
ephy_link_open (EPHY_LINK (action),
address, NULL,
- EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO);
+ EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP);
}
else
{
ephy_home_action_open (action,
address,
- EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO);
+ EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO | EPHY_LINK_ALLOW_FIXUP);
}
}
else if (strcmp (action_name, "FileNewWindow") == 0)
@@ -137,13 +137,13 @@ action_name_association (GtkAction *action,
{
ephy_link_open (EPHY_LINK (action),
address, NULL,
- EPHY_LINK_NEW_WINDOW);
+ EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP);
}
else
{
ephy_home_action_open (action,
address,
- EPHY_LINK_NEW_WINDOW);
+ EPHY_LINK_NEW_WINDOW | EPHY_LINK_ALLOW_FIXUP);
}
}
else if (strcmp (action_name, "GoHome") == 0)