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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-26 14:06:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-26 14:06:40 +0300
commit75355ef426627e6c4f3d34bf5de0031da1374e73 (patch)
tree283ba0653ecadd38b491679952f4e937c391a402 /source/blender/makesrna
parent0d559a67304d25a5c39937528cbc3c3dd51b6396 (diff)
RNA: correct naming w/ last cleanup
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_material.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index a81a7452771..a40606018e7 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -374,7 +374,7 @@ void RNA_def_material(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_transparent_backside", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "blend_flag", MA_BL_HIDE_BACKSIDE);
- RNA_def_property_ui_text(prop, "Hide Backside", "Limit transparency to a single layer "
+ RNA_def_property_ui_text(prop, "Show Backside", "Limit transparency to a single layer "
"(avoids transparency sorting problems)");
RNA_def_property_update(prop, 0, "rna_Material_draw_update");