menus are now global (like operators), so for eg, the info add menu and the 3D add menu can be shared.

This commit is contained in:
2009-10-08 19:06:32 +00:00
parent 3ebd58673f
commit 5c867406aa
29 changed files with 70 additions and 194 deletions

View File

@@ -94,7 +94,7 @@ static PyObject *pyop_call( PyObject * self, PyObject * args)
char *report_str= BKE_reports_string(reports, 0); /* all reports */
if(report_str) {
PySys_WriteStdout(report_str);
PySys_WriteStdout("%s\n", report_str);
MEM_freeN(report_str);
}
}