diff options
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 6114d52e7..df230479c 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -139,7 +139,7 @@ action_activated_cb (GtkEntryCompletion *completion, if (url == NULL) return; ephy_link_open (EPHY_LINK (action), url, NULL, - ephy_link_flags_from_current_event ()); + ephy_link_flags_from_current_event () | EPHY_LINK_ALLOW_FIXUP); g_free (url); } @@ -162,7 +162,7 @@ entry_activate_cb (GtkEntry *entry, g_return_if_fail (address != NULL); ephy_link_open (EPHY_LINK (action), address, NULL, - ephy_link_flags_from_current_event ()); + ephy_link_flags_from_current_event () | EPHY_LINK_ALLOW_FIXUP); g_free (address); } |