bpy fix for crash/assert on running dir() on a non collection property + some other minor corrections.

This commit is contained in:
2011-07-30 13:18:04 +00:00
parent 681b26a48e
commit d163ce5595
3 changed files with 9 additions and 5 deletions

View File

@@ -205,7 +205,7 @@ void RNA_api_operator(StructRNA *srna)
/* check */
func= RNA_def_function(srna, "check", NULL);
RNA_def_function_ui_description(func, "Check the operator settings.");
RNA_def_function_ui_description(func, "Check the operator settings, return True to signal a change to redraw.");
RNA_def_function_flag(func, FUNC_REGISTER_OPTIONAL);
parm= RNA_def_pointer(func, "context", "Context", "", "");
RNA_def_property_flag(parm, PROP_REQUIRED|PROP_NEVER_NULL);