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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-10-06 07:00:00 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-10-06 07:00:07 +0300
commit82f0e4948c36a4d69d0c3dc3e14d9b4376e0be37 (patch)
tree964f3af7960143a27c67e414dee95fd870fea621 /source/blender/makesrna/intern/rna_modifier.c
parentce66075d0027d21044fe46591cd10d211443162a (diff)
UI: Boolean rename "Self" to "Self Intersection"
Better to be more explicit here, also this matches the recent Boolean Node.
Diffstat (limited to 'source/blender/makesrna/intern/rna_modifier.c')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index c99dfea524f..028b6b6e11f 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -2746,7 +2746,7 @@ static void rna_def_modifier_boolean(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_self", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", eBooleanModifierFlag_Self);
- RNA_def_property_ui_text(prop, "Self", "Allow self-intersection in operands");
+ RNA_def_property_ui_text(prop, "Self Intersection", "Allow self-intersection in operands");
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "use_hole_tolerant", PROP_BOOLEAN, PROP_NONE);