From 53fa4278bf73c7ad5de3ee3fc6ba5b6bc1b85843 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 7 May 2007 19:46:08 +0100 Subject: Show the file type icon in the search results Use the newly added column containing the file icon pixbuf inside the icon cell data function to show the icon of each search hit. Signed-off-by: Emmanuele Bassi --- gtk/gtkfilechooserdefault.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/gtk/gtkfilechooserdefault.c b/gtk/gtkfilechooserdefault.c index d23f1d2..ad22821 100644 --- a/gtk/gtkfilechooserdefault.c +++ b/gtk/gtkfilechooserdefault.c @@ -9347,6 +9347,10 @@ list_icon_data_func (GtkTreeViewColumn *tree_column, switch (impl->operation_mode) { case OPERATION_MODE_SEARCH: + gtk_tree_model_get (GTK_TREE_MODEL (impl->search_model), iter, + SEARCH_MODEL_COL_PIXBUF, &pixbuf, + -1); + sensitive = TRUE; break; case OPERATION_MODE_BROWSE: -- 1.4.4.2