[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45218] trunk/blender/source/blender/ editors/mesh/editmesh_tools.c: Patch [#30683] Editmesh_tools without descriptions by Harley Acheson (harley)

Thomas Dinges blender at dingto.org
Tue Mar 27 19:53:39 CEST 2012


Revision: 45218
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45218
Author:   dingto
Date:     2012-03-27 17:53:31 +0000 (Tue, 27 Mar 2012)
Log Message:
-----------
Patch [#30683] Editmesh_tools without descriptions by Harley Acheson (harley) 

* Some Edit Mesh operators were missing the description after b-mesh merge. 

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-03-27 17:19:13 UTC (rev 45217)
+++ trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2012-03-27 17:53:31 UTC (rev 45218)
@@ -1977,6 +1977,7 @@
 {
 	/* identifiers */
 	ot->name = "Merge";
+	ot->description = "Merge selected vertices";
 	ot->idname = "MESH_OT_merge";
 
 	/* api callbacks */
@@ -2026,6 +2027,7 @@
 {
 	/* identifiers */
 	ot->name = "Remove Doubles";
+	ot->description= "Remove duplicate vertices";
 	ot->idname = "MESH_OT_remove_doubles";
 
 	/* api callbacks */
@@ -3545,6 +3547,7 @@
 {
 	/* identifiers */
 	ot->name = "Spin";
+	ot->description = "Extrude selected vertices in a circle around the cursor in indicated viewport";
 	ot->idname = "MESH_OT_spin";
 
 	/* api callbacks */
@@ -3668,6 +3671,7 @@
 {
 	/* identifiers */
 	ot->name = "Screw";
+	ot->description = "Extrude selected vertices in screw-shaped rotation around the cursor in indicated viewport";
 	ot->idname = "MESH_OT_screw";
 
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list