[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45417] trunk/blender/source/blender/ editors/mesh/editmesh_tools.c: patch [#30812] Couple operator tooltip proposals (editmesh_tools.c)

Campbell Barton ideasman42 at gmail.com
Thu Apr 5 09:05:45 CEST 2012


Revision: 45417
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45417
Author:   campbellbarton
Date:     2012-04-05 07:05:44 +0000 (Thu, 05 Apr 2012)
Log Message:
-----------
patch [#30812] Couple operator tooltip proposals (editmesh_tools.c)
from Sebastian Nell (codemanx), with some edits.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/editmesh_tools.c

Modified: trunk/blender/source/blender/editors/mesh/editmesh_tools.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2012-04-05 06:47:14 UTC (rev 45416)
+++ trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2012-04-05 07:05:44 UTC (rev 45417)
@@ -1189,6 +1189,7 @@
 	/* identifiers */
 	ot->name = "Vertex Connect";
 	ot->idname = "MESH_OT_vert_connect";
+	ot->description = "Connect 2 vertices in a face with by an edge, splitting the face in half";
 	
 	/* api callbacks */
 	ot->exec = edbm_vert_connect;
@@ -2464,6 +2465,7 @@
 	/* identifiers */
 	ot->name = "Rip";
 	ot->idname = "MESH_OT_rip";
+	ot->description = "Disconnect vertex or edges from connected geometry";
 
 	/* api callbacks */
 	ot->invoke = edbm_rip_invoke;
@@ -3335,6 +3337,7 @@
 	/* identifiers */
 	ot->name = "Fill";
 	ot->idname = "MESH_OT_fill";
+	ot->description = "Fill a selected edge loop with faces";
 
 	/* api callbacks */
 	ot->exec = edbm_fill_exec;
@@ -3390,8 +3393,9 @@
 void MESH_OT_quads_convert_to_tris(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name = "Quads to Tris";
+	ot->name = "Triangulate Faces";
 	ot->idname = "MESH_OT_quads_convert_to_tris";
+	ot->description = "Triangulate selected faces";
 
 	/* api callbacks */
 	ot->exec = edbm_quads_convert_to_tris_exec;
@@ -3434,6 +3438,7 @@
 	/* identifiers */
 	ot->name = "Tris to Quads";
 	ot->idname = "MESH_OT_tris_convert_to_quads";
+	ot->description = "Join triangles into quads";
 
 	/* api callbacks */
 	ot->exec = edbm_tris_convert_to_quads_exec;
@@ -3562,6 +3567,7 @@
 	/* identifiers */
 	ot->name = "Split";
 	ot->idname = "MESH_OT_split";
+	ot->description = "Split off selected geometry from connected unselected geometry";
 
 	/* api callbacks */
 	ot->exec = edbm_split_exec;




More information about the Bf-blender-cvs mailing list