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:
authorAlaska <Alaska>2022-02-09 13:28:27 +0300
committerJeroen Bakker <jeroen@blender.org>2022-02-09 13:28:39 +0300
commitfd6506626b519e08d593d4e553590f95edfd0c6a (patch)
treeaa26f37f60deb219b700da5980c5c1384aebb9af /source/blender
parentd3d9e2abbf820cfcf7bbee08fc0c5d721a612ba1 (diff)
Adjust "Show Backface" tool tip to be more accurate
Reviewed By: fclem Differential Revision: https://developer.blender.org/D13849
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_material.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_material.c b/source/blender/makesrna/intern/rna_material.c
index 9cbe12d8e1a..8c6d51b1bfa 100644
--- a/source/blender/makesrna/intern/rna_material.c
+++ b/source/blender/makesrna/intern/rna_material.c
@@ -791,8 +791,8 @@ void RNA_def_material(BlenderRNA *brna)
RNA_def_property_boolean_negative_sdna(prop, NULL, "blend_flag", MA_BL_HIDE_BACKFACE);
RNA_def_property_ui_text(prop,
"Show Backface",
- "Limit transparency to a single layer "
- "(avoids transparency sorting problems)");
+ "Render multiple transparent layers "
+ "(may introduce transparency sorting problems)");
RNA_def_property_update(prop, 0, "rna_Material_draw_update");
prop = RNA_def_property(srna, "use_backface_culling", PROP_BOOLEAN, PROP_NONE);