LarsGit223 commented on this pull request.
> + sidebar_insert_project_directories(project, &iter, &position);
+ }
+}
+
+
+/* Insert all projects into the sidebar file tree */
+static void sidebar_insert_all_projects(GtkTreeIter *iter, gint *position)
+{
+ GIcon *icon_ok, *icon_ko, *icon;
+ guint index, max;
+
+ if (wb_globals.opened_wb == NULL)
+ return;
+
+ icon_ok = g_icon_new_for_string("workbench-project", NULL);
+ icon_ko = g_icon_new_for_string("workbench-project-error", NULL);
Adjusted: replaced them with ```icon_good``` and ```icon_bad```.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/598#discussion_r134087295