[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33761] trunk/blender/source/blender/ editors/curve/editcurve.c: - Rename operator "Set Curve Radius" to " Set Curve Weight" to "Set Goal Weight"

Sergey Sharybin g.ulairi at gmail.com
Sat Dec 18 10:18:40 CET 2010


Revision: 33761
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33761
Author:   nazgul
Date:     2010-12-18 10:18:39 +0100 (Sat, 18 Dec 2010)

Log Message:
-----------
- Rename operator "Set Curve Radius" to "Set Curve Weight" to "Set Goal Weight"
  as it was in 2.49 (functionality of this operator hasn't changed, but it's
  quite confusing name)
- Documentation for some 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	2010-12-18 07:22:52 UTC (rev 33760)
+++ trunk/blender/source/blender/editors/curve/editcurve.c	2010-12-18 09:18:39 UTC (rev 33761)
@@ -1967,6 +1967,7 @@
 {
 	/* identifiers */
 	ot->name= "Switch Direction";
+	ot->description= "Switch direction of selected splines";
 	ot->idname= "CURVE_OT_switch_direction";
 	
 	/* api callbacks */
@@ -2013,7 +2014,8 @@
 void CURVE_OT_spline_weight_set(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Set Curve Weight";
+	ot->name= "Set Goal Weight";
+	ot->description= "Set softbody goal weight for selected points";
 	ot->idname= "CURVE_OT_spline_weight_set";
 	
 	/* api callbacks */
@@ -2065,6 +2067,7 @@
 {
 	/* identifiers */
 	ot->name= "Set Curve Radius";
+	ot->description= "Set per-point radius which is used for bevel tapering";
 	ot->idname= "CURVE_OT_radius_set";
 	
 	/* api callbacks */
@@ -2140,6 +2143,7 @@
 {
 	/* identifiers */
 	ot->name= "Smooth";
+	ot->description= "Flatten angles of selected points";
 	ot->idname= "CURVE_OT_smooth";
 	
 	/* api callbacks */
@@ -2305,6 +2309,7 @@
 {
 	/* identifiers */
 	ot->name= "Smooth Curve Radius";
+	ot->description= "Flatten radiuses of selected points";
 	ot->idname= "CURVE_OT_smooth_radius";
 	
 	/* api clastbacks */
@@ -3191,6 +3196,7 @@
 {
 	/* identifiers */
 	ot->name= "Subdivide";
+	ot->description= "Subdivide selected segments";
 	ot->idname= "CURVE_OT_subdivide";
 	
 	/* api callbacks */





More information about the Bf-blender-cvs mailing list