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/editors/mesh/editmesh_intersect.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/editors/mesh/editmesh_intersect.c')
-rw-r--r--source/blender/editors/mesh/editmesh_intersect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_intersect.c b/source/blender/editors/mesh/editmesh_intersect.c
index f2691580a9d..5dfa804ad85 100644
--- a/source/blender/editors/mesh/editmesh_intersect.c
+++ b/source/blender/editors/mesh/editmesh_intersect.c
@@ -480,7 +480,7 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot)
false,
"Swap",
"Use with difference intersection to swap which side is kept");
- RNA_def_boolean(ot->srna, "use_self", false, "Self", "Do self-union or self-intersection");
+ RNA_def_boolean(ot->srna, "use_self", false, "Self Intersection", "Do self-union or self-intersection");
RNA_def_float_distance(
ot->srna, "threshold", 0.000001f, 0.0, 0.01, "Merge Threshold", "", 0.0, 0.001);
RNA_def_enum(ot->srna,