diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmarks.c | 2 | ||||
-rw-r--r-- | src/ephy-location-action.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c index 9d4269a4e..86e824fc3 100644 --- a/src/bookmarks/ephy-bookmarks.c +++ b/src/bookmarks/ephy-bookmarks.c @@ -183,7 +183,7 @@ ephy_bookmarks_autocompletion_source_foreach (EphyAutocompletionSource *source, (kid, EPHY_NODE_BMK_PROP_KEYWORDS); func (source, keywords, title, url, smart_url, - TRUE, 0, data); + !smart_url, 0, data); } ephy_node_thaw (eb->priv->bookmarks); } diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index a87796d3d..67ac05be3 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -70,7 +70,7 @@ create_tool_item (EggAction *action) LOG ("Create location toolitem") - item = GTK_WIDGET (egg_tool_item_new ());//(* EGG_ACTION_CLASS (parent_class)->create_tool_item) (action); + item = GTK_WIDGET (egg_tool_item_new ()); location = ephy_location_entry_new (); gtk_container_add (GTK_CONTAINER (item), location); egg_tool_item_set_expand (EGG_TOOL_ITEM (item), TRUE); @@ -88,7 +88,9 @@ location_url_activate_cb (EphyLocationEntry *entry, EphyLocationAction *action) { EphyBookmarks *bookmarks; - LOG ("Location url activated") + + LOG ("Location url activated, content %s target %s", content, target) + bookmarks = ephy_shell_get_bookmarks (ephy_shell); if (!content) |