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 <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-05-04 16:51:52 -04:00
parent b91b898913
commit d2c4a36945
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}