Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-04-05 00:31:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-04-05 00:31:01 +0400
commit83931775a1aaf742f46aeb8424a943bfc09f277f (patch)
treeb830b2a99a9adb39929336acb1d73a817fb93812 /source/blender/editors/curve
parent6f207608185501193abd7f2f27163f29d2d84a3d (diff)
Descriptions for some of curve operators
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editcurve.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c
index 9b5f1546898..4ef5f80dcf6 100644
--- a/source/blender/editors/curve/editcurve.c
+++ b/source/blender/editors/curve/editcurve.c
@@ -3581,6 +3581,7 @@ void CURVE_OT_spline_type_set(wmOperatorType *ot)
/* 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 @@ void CURVE_OT_handle_type_set(wmOperatorType *ot)
/* 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 @@ void CURVE_OT_extrude(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Extrude";
+ ot->description = "Extrude selected control point(s) and move";
ot->idname= "CURVE_OT_extrude";
/* api callbacks */
@@ -4873,6 +4876,7 @@ void CURVE_OT_cyclic_toggle(wmOperatorType *ot)
/* 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 @@ void CURVE_OT_duplicate(wmOperatorType *ot)
{
/* 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 @@ void CURVE_OT_delete(wmOperatorType *ot)
/* identifiers */
ot->name= "Delete";
+ ot->description = "Delete selected control points or segments";
ot->idname= "CURVE_OT_delete";
/* api callbacks */