From cc5426de20fdf4421d63b7e77cbc02d0f44673b0 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Wed, 6 Nov 2013 01:22:15 +0100 Subject: [PATCH] Fix search fields in GTK3 --- pluma/pluma-history-entry.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pluma/pluma-history-entry.c b/pluma/pluma-history-entry.c index bb77259..3f28e8a 100644 --- a/pluma/pluma-history-entry.c +++ b/pluma/pluma-history-entry.c @@ -529,7 +529,12 @@ pluma_history_entry_new (const gchar *history_id, ret = g_object_new (PLUMA_TYPE_HISTORY_ENTRY, "history-id", history_id, "model", store, +#if GTK_CHECK_VERSION (3, 0, 0) + "has-entry", TRUE, + "id-column", 0, +#else "text-column", 0, +#endif NULL); g_object_unref (store);