epiphany r8379 - trunk/src
- From: diegoe svn gnome org
- To: svn-commits-list gnome org
- Subject: epiphany r8379 - trunk/src
- Date: Mon, 4 Aug 2008 13:19:57 +0000 (UTC)
Author: diegoe
Date: Mon Aug 4 13:19:57 2008
New Revision: 8379
URL: http://svn.gnome.org/viewvc/epiphany?rev=8379&view=rev
Log:
Fix the keyword search for tabs/windows created from toolbar.
Add EPHY_LINK_ALLOW_FIXUP to the flags when openning new tabs and windows from
their toolbar buttons so the text is not always treated as an url,
closes: #523296.
Modified:
trunk/src/ephy-home-action.c
Modified: trunk/src/ephy-home-action.c
==============================================================================
--- trunk/src/ephy-home-action.c (original)
+++ trunk/src/ephy-home-action.c Mon Aug 4 13:19:57 2008
@@ -122,13 +122,13 @@
{
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 @@
{
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)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]