From 829499e5aacd752deb5e3e726aa04a57c137392e Mon Sep 17 00:00:00 2001 From: dcharlespyle Date: Mon, 24 Feb 2014 10:17:34 +0100 Subject: gsearchtool: Fix search history entry Fixes problem of search history entries not showing up on the combobox in mate-search-tool --- gsearchtool/libmateui-deprecated/gsearchtool-entry.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gsearchtool/libmateui-deprecated/gsearchtool-entry.c b/gsearchtool/libmateui-deprecated/gsearchtool-entry.c index 9d39b4ba..cd665a24 100644 --- a/gsearchtool/libmateui-deprecated/gsearchtool-entry.c +++ b/gsearchtool/libmateui-deprecated/gsearchtool-entry.c @@ -568,9 +568,10 @@ gsearch_history_entry_new (const gchar *history_id, store = gtk_list_store_new(1, G_TYPE_STRING); ret = g_object_new(GSEARCH_TYPE_HISTORY_ENTRY, + "has-entry", TRUE, "history-id", history_id, "model", store, - "has-entry", TRUE, + "entry-text-column", 0, NULL); g_object_unref (store); -- cgit v1.2.1