@LarsGit223 commented on this pull request.


In workbench/src/sidebar.c:

> +			case DATA_ID_PROJECT:
+				info = wb_project_get_info((WB_PROJECT *)address);
+				if (workbench_get_project_status_by_address(wb_globals.opened_wb, address)
+					==
+					PROJECT_ENTRY_STATUS_OK)
+				{
+					dialogs_show_msgbox(GTK_MESSAGE_INFO, "%s", info);
+				}
+				else
+				{
+					dialogs_show_msgbox(GTK_MESSAGE_ERROR, _("%s\nProject file not found!"), info);
+				}
+				g_free(info);
+			break;
+			case DATA_ID_DIRECTORY:
+			    info = wb_project_dir_get_info((WB_PROJECT_DIR *)address);

Fixed.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.