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:
authorPhilipp Oeser <info@graphics-engineer.com>2015-03-11 14:15:16 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-03-11 14:17:13 +0300
commit72f86ad04650e3609434e754140a3281339eeaa1 (patch)
tree3a781f7b4d7b4d16f89c1e4c768e5ce2feefa390
parent527302bc0b0693b2f5d1ccb567fb532923cd393a (diff)
Fix typo in RNA definition of "shape_key_add"
Reviewers: sergey Reviewed By: sergey Differential Revision: https://developer.blender.org/D1167
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index 1b4bc10551b..814e6e8733b 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -557,7 +557,7 @@ void RNA_api_object(StructRNA *srna)
func = RNA_def_function(srna, "shape_key_add", "rna_Object_shape_key_add");
RNA_def_function_ui_description(func, "Add shape key to an object");
RNA_def_function_flag(func, FUNC_USE_CONTEXT | FUNC_USE_REPORTS);
- RNA_def_string(func, "name", "Key", 0, "", "Unique name for the new keylock"); /* optional */
+ RNA_def_string(func, "name", "Key", 0, "", "Unique name for the new keyblock"); /* optional */
RNA_def_boolean(func, "from_mix", 1, "", "Create new shape from existing mix of shapes");
parm = RNA_def_pointer(func, "key", "ShapeKey", "", "New shape keyblock");
RNA_def_property_flag(parm, PROP_RNAPTR);