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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-07 00:48:26 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-11-07 00:48:26 +0400
commit4496b9004c69b5bbcdcf7a154de1f88887196a98 (patch)
tree0dfa1cfd04479dbdfb76aed01812b39b0538df9f /source/blender/makesrna
parentecda79a8b82fb583cbea2a0c4bf430c649b46e33 (diff)
Cycles: tangent and normal map now show UV map link menu instead of text field.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 93f37682aa3..0a7e124f591 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -1869,7 +1869,7 @@ static void def_sh_normal_map(StructRNA *srna)
RNA_def_property_update(prop, 0, "rna_Node_update");
prop = RNA_def_property(srna, "uv_map", PROP_STRING, PROP_NONE);
- RNA_def_property_ui_text(prop, "UV Map", "Name of the UV Map for for tangent space maps");
+ RNA_def_property_ui_text(prop, "UV Map", "UV Map for for tangent space maps");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
RNA_def_struct_sdna_from(srna, "bNode", NULL);
@@ -1905,7 +1905,7 @@ static void def_sh_tangent(StructRNA *srna)
RNA_def_property_update(prop, 0, "rna_Node_update");
prop = RNA_def_property(srna, "uv_map", PROP_STRING, PROP_NONE);
- RNA_def_property_ui_text(prop, "UV Map", "Name of the UV Map for for tangent generated from UV");
+ RNA_def_property_ui_text(prop, "UV Map", "UV Map for for tangent generated from UV");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
RNA_def_struct_sdna_from(srna, "bNode", NULL);