diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2010-06-15 17:45:45 +0300 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2010-06-15 17:45:45 +0300 |
commit | e5920a452c2a3ba9267b8e9aef2350ee67dd5791 (patch) | |
tree | 6d175a5f89470224f5004baff0d47cb3542c2fde | |
parent | ed664236929a6e2ab4c188180c9e19de75684f09 (diff) |
Use hildon_live_search_set_text() when hiding the live search widget
In order to get advantage of the fix in the previous commit.
Fixes: NB#174382 (Only filtered contacts are picked from contact list)
-rw-r--r-- | hildon/hildon-live-search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hildon/hildon-live-search.c b/hildon/hildon-live-search.c index f196e73..fe209fe 100644 --- a/hildon/hildon-live-search.c +++ b/hildon/hildon-live-search.c @@ -588,7 +588,7 @@ static void on_hide_cb (GtkWidget *widget, HildonLiveSearch *live_search) { - gtk_entry_set_text (GTK_ENTRY (live_search->priv->entry), ""); + hildon_live_search_set_text (live_search, ""); gtk_widget_grab_focus (live_search->priv->kb_focus_widget); } |