From d2c4a36945dc52ca62e89b09632249778ff6db8f Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Wed, 4 May 2016 16:51:52 -0400 Subject: [PATCH] gui/collection: Add icon to library paths I'm surprised this wasn't already there. I think the "folder" icon works best, considering library paths are directories in the filesystem. Signed-off-by: Anna Schumaker --- gui/collection.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/collection.c b/gui/collection.c index 582bc4dd..49e3eaff 100644 --- a/gui/collection.c +++ b/gui/collection.c @@ -30,6 +30,7 @@ static void __collection_set_library(GtkTreeIter *iter, struct library *library) gtk_tree_store_set(GTK_TREE_STORE(c_model), iter, C_SB_ENABLED, library->li_enabled, C_SB_SHOW_ENABLED, true, + C_SB_IMAGE, "folder", C_SB_PATH, library->li_path, C_SB_LIBRARY, library, -1); }