[Bf-blender-cvs] [ba82981] master: Rename mesh operators

Campbell Barton noreply at git.blender.org
Tue Dec 22 07:22:41 CET 2015


Commit: ba82981a2fee5e11ef38ac8fe367cb255585235e
Author: Campbell Barton
Date:   Tue Dec 22 17:12:32 2015 +1100
Branches: master
https://developer.blender.org/rBba82981a2fee5e11ef38ac8fe367cb255585235e

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.

===================================================================

M	source/blender/editors/mesh/editmesh_intersect.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_intersect.c b/source/blender/editors/mesh/editmesh_intersect.c
index 634c4e5..d61e327 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 */




More information about the Bf-blender-cvs mailing list