From 70810101e3df12ea9aa6f2f0627b26b2335c8072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jani=20V=C3=A4limaa?= Date: Fri, 27 Feb 2015 08:55:36 -0600 Subject: [PATCH 1/3] thunar-file.c: Fix icon_name usage Signed-off-by: Robby Workman --- thunar/thunar-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c index 244b658..49eb42b 100644 --- a/thunar/thunar-file.c +++ b/thunar/thunar-file.c @@ -3727,7 +3727,7 @@ thunar_file_get_icon_name (ThunarFile *file, file->icon_name = icon_name; else if (file->kind == G_FILE_TYPE_DIRECTORY && gtk_icon_theme_has_icon (icon_theme, "folder")) - icon_name = g_strdup ("folder"); + file->icon_name = g_strdup ("folder"); else file->icon_name = g_strdup (""); -- 2.3.1