diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-31 03:11:46 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2008-05-31 03:11:46 +0800 |
commit | 5a7ec338866c251a26cd4558452e412881060b9a (patch) | |
tree | 6f0cb1fa7e13d0277020c5b9e8bf7756b0686ee3 /src | |
parent | 1e9c0447beb82be6e6f01f63b0726193cee7948b (diff) | |
download | gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar.gz gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar.bz2 gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar.lz gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar.xz gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.tar.zst gsoc2013-epiphany-5a7ec338866c251a26cd4558452e412881060b9a.zip |
Make the bookmarks editor search in urls and titles, closes: #328489.
svn path=/trunk/; revision=8263
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 615e550f7..f506a9a52 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -1588,6 +1588,11 @@ search_entry_search_cb (GtkWidget *entry, const char *search_text, EphyBookmarks 0); ephy_node_filter_add_expression (editor->priv->bookmarks_filter, ephy_node_filter_expression_new (EPHY_NODE_FILTER_EXPRESSION_STRING_PROP_CONTAINS, + EPHY_NODE_BMK_PROP_LOCATION, + search_text), + 0); + ephy_node_filter_add_expression (editor->priv->bookmarks_filter, + ephy_node_filter_expression_new (EPHY_NODE_FILTER_EXPRESSION_STRING_PROP_CONTAINS, EPHY_NODE_BMK_PROP_KEYWORDS, search_text), 0); |