[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36009] trunk/blender/source/blender/ editors/curve/editcurve.c: Descriptions for some of curve operators

Sergey Sharybin g.ulairi at gmail.com
Mon Apr 4 22:31:02 CEST 2011


Revision: 36009
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36009
Author:   nazgul
Date:     2011-04-04 20:31:01 +0000 (Mon, 04 Apr 2011)
Log Message:
-----------
Descriptions for some of curve operators

Modified Paths:
--------------
    trunk/blender/source/blender/editors/curve/editcurve.c

Modified: trunk/blender/source/blender/editors/curve/editcurve.c
===================================================================
--- trunk/blender/source/blender/editors/curve/editcurve.c	2011-04-04 19:39:47 UTC (rev 36008)
+++ trunk/blender/source/blender/editors/curve/editcurve.c	2011-04-04 20:31:01 UTC (rev 36009)
@@ -3581,6 +3581,7 @@
 
 	/* identifiers */
 	ot->name= "Set Spline Type";
+	ot->description = "Set type of actibe spline";
 	ot->idname= "CURVE_OT_spline_type_set";
 	
 	/* api callbacks */
@@ -3623,6 +3624,7 @@
 
 	/* identifiers */
 	ot->name= "Set Handle Type";
+	ot->description = "Set type of handles for selected control points";
 	ot->idname= "CURVE_OT_handle_type_set";
 	
 	/* api callbacks */
@@ -4745,6 +4747,7 @@
 {
 	/* identifiers */
 	ot->name= "Extrude";
+	ot->description = "Extrude selected control point(s) and move";
 	ot->idname= "CURVE_OT_extrude";
 	
 	/* api callbacks */
@@ -4873,6 +4876,7 @@
 
 	/* identifiers */
 	ot->name= "Toggle Cyclic";
+	ot->description = "Make active spline closed/opened loop";
 	ot->idname= "CURVE_OT_cyclic_toggle";
 	
 	/* api callbacks */
@@ -5619,6 +5623,7 @@
 {
 	/* identifiers */
 	ot->name= "Duplicate";
+	ot->description = "Duplicate selected control points and segments between them";
 	ot->idname= "CURVE_OT_duplicate";
 	
 	/* api callbacks */
@@ -5984,6 +5989,7 @@
 
 	/* identifiers */
 	ot->name= "Delete";
+	ot->description = "Delete selected control points or segments";
 	ot->idname= "CURVE_OT_delete";
 	
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list