LarsGit223 commented on this pull request.
==
+ PROJECT_ENTRY_STATUS_OK) + { + icon = icon_ok; + } + else + { + icon = icon_ko; + } + + length = g_snprintf(text, sizeof(text), "%s", wb_project_get_name(project)); + if (length < (sizeof(text)-1) && wb_project_is_modified(project)) + { + text [length] = '*'; + text [length+1] = '\0'; + }
See above.