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>2015-12-22 09:12:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-22 09:12:32 +0300
commitba82981a2fee5e11ef38ac8fe367cb255585235e (patch)
tree2bc0777260c9c1150ecb0372d755496f757e3263 /source/blender/editors/mesh/editmesh_intersect.c
parent6d10bf7c4468d985224467940a5e1a4b27c01315 (diff)
Rename mesh operators
- use 'Intersect' prefix for boolean and regular intersection. hints that they use the same basic logic with different modes. - 'split by edges' while correct - isn't very descriptive.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_intersect.c')
-rw-r--r--source/blender/editors/mesh/editmesh_intersect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/mesh/editmesh_intersect.c b/source/blender/editors/mesh/editmesh_intersect.c
index 634c4e51566..d61e3279491 100644
--- a/source/blender/editors/mesh/editmesh_intersect.c
+++ b/source/blender/editors/mesh/editmesh_intersect.c
@@ -191,7 +191,7 @@ void MESH_OT_intersect(struct wmOperatorType *ot)
};
/* identifiers */
- ot->name = "Intersect";
+ ot->name = "Intersect (Knife)";
ot->description = "Cut an intersection into faces";
ot->idname = "MESH_OT_intersect";
@@ -264,7 +264,7 @@ void MESH_OT_intersect_boolean(struct wmOperatorType *ot)
};
/* identifiers */
- ot->name = "Boolean Intersect";
+ ot->name = "Intersect (Boolean)";
ot->description = "Cut solid geometry from selected to unselected";
ot->idname = "MESH_OT_intersect_boolean";
@@ -845,8 +845,8 @@ static int edbm_face_split_by_edges_exec(bContext *C, wmOperator *UNUSED(op))
void MESH_OT_face_split_by_edges(struct wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Split by Edges";
- ot->description = "Split faces by loose edges";
+ ot->name = "Weld Edges into Faces";
+ ot->description = "Weld loose edges into faces (splitting them into new faces)";
ot->idname = "MESH_OT_face_split_by_edges";
/* api callbacks */