Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-03-04 04:58:14 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-04 04:58:14 +0300
commitc755d8fbb520fbcf2a6d891dd623c0902369b183 (patch)
tree851a91e3a38c916dce9d78e5a8b2f8c9c96b83f8 /source
parent85c38e73895eb9de211cabc527ca41bb3e3c8e8f (diff)
RNA: rename mesh validate argument
cleanup_cddata -> clean_customdata
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_mesh_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_mesh_api.c b/source/blender/makesrna/intern/rna_mesh_api.c
index 53704e24bff..3f487698420 100644
--- a/source/blender/makesrna/intern/rna_mesh_api.c
+++ b/source/blender/makesrna/intern/rna_mesh_api.c
@@ -317,8 +317,8 @@ void RNA_api_mesh(StructRNA *srna)
RNA_def_function_ui_description(func, "Validate geometry, return True when the mesh has had "
"invalid geometry corrected/removed");
RNA_def_boolean(func, "verbose", false, "Verbose", "Output information about the errors found");
- RNA_def_boolean(func, "cleanup_cddata", true, "Cleanup CDData",
- "Remove temp/cached cdlayers, like e.g. normals...");
+ RNA_def_boolean(func, "clean_customdata", true, "Clean Custom Data",
+ "Remove temp/cached custom-data layers, like e.g. normals...");
parm = RNA_def_boolean(func, "result", 0, "Result", "");
RNA_def_function_return(func, parm);