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:
authorCampbell Barton <ideasman42@gmail.com>2009-11-28 16:33:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-28 16:33:56 +0300
commita2b370dd6f55d6114da3ec1d86788e9c9786822f (patch)
tree8f5adc8b06e8f9506155e4906dd7ff5d11fdc987 /source/blender/makesrna/intern/rna_pose.c
parentc4933cccfa74836ff88a6904abfaf52c8e0cde87 (diff)
py/rna api
- object.modifiers.add()/remove() - armature.edit_bones.active wasnt named correctly
Diffstat (limited to 'source/blender/makesrna/intern/rna_pose.c')
-rw-r--r--source/blender/makesrna/intern/rna_pose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index 8d43d72c02e..8a4aadcba57 100644
--- a/source/blender/makesrna/intern/rna_pose.c
+++ b/source/blender/makesrna/intern/rna_pose.c
@@ -611,7 +611,7 @@ static void rna_def_pose_channel_constraints(BlenderRNA *brna, PropertyRNA *cpro
/* return type */
parm= RNA_def_pointer(func, "constraint", "Constraint", "", "New constraint.");
RNA_def_function_return(func, parm);
- /* object to add */
+ /* constraint to add */
parm= RNA_def_enum(func, "type", constraint_type_items, 1, "", "Constraint type to add.");
RNA_def_property_flag(parm, PROP_REQUIRED);