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
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/makesrna/intern/rna_material.c')
-rw-r--r--source/blender/makesrna/intern/rna_material.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index a4a132a4ebe..0ef564282eb 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -42,8 +42,9 @@ void RNA_def_material(BlenderRNA *brna)
static EnumPropertyItem prop_type_items[] = {
{MA_RGB, "RGB", "RGB", ""},
- /*{MA_CMYK, "CMYK", "CMYK", ""},
- {MA_YUV, "YUV", "YUV", ""}, XXX: blender code doesn't support this yet. Commented out */
+ /* not used in blender yet
+ {MA_CMYK, "CMYK", "CMYK", ""},
+ {MA_YUV, "YUV", "YUV", ""}, */
{MA_HSV, "HSV", "HSV", ""},
{0, NULL, NULL, NULL}};
static EnumPropertyItem prop_fadeto_mir_items[] = {
@@ -178,7 +179,7 @@ void RNA_def_material(BlenderRNA *brna)
/* nodetree */
prop= RNA_def_property(srna, "nodetree", PROP_POINTER, PROP_NONE);
RNA_def_property_struct_type(prop, "NodeTree");
- RNA_def_property_ui_text(prop, "Nodetree", "");
+ RNA_def_property_ui_text(prop, "Node Tree", "");
}
#endif