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:
authorJoshua Leung <aligorith@gmail.com>2011-03-28 03:19:32 +0400
committerJoshua Leung <aligorith@gmail.com>2011-03-28 03:19:32 +0400
commit89c2357892458be0c47eef0e43b81cb81e8cf2fa (patch)
tree8e16288d779135b36704f79ce203882fbabae03b /source/blender/makesrna/intern/rna_key.c
parent84befe2056a8ae03d38ab539b26f1638bdcbd41c (diff)
Bugfix: One more place still using the old "keys" instead of
"key_blocks"
Diffstat (limited to 'source/blender/makesrna/intern/rna_key.c')
-rw-r--r--source/blender/makesrna/intern/rna_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c
index 48cab3b13d1..a7317d18df1 100644
--- a/source/blender/makesrna/intern/rna_key.c
+++ b/source/blender/makesrna/intern/rna_key.c
@@ -348,7 +348,7 @@ static char *rna_ShapeKey_path(PointerRNA *ptr)
ID *id= ptr->id.data;
if ((id) && (GS(id->name) != ID_KE))
- return BLI_sprintfN("shape_keys.keys[\"%s\"]", kb->name);
+ return BLI_sprintfN("shape_keys.key_blocks[\"%s\"]", kb->name);
else
return BLI_sprintfN("key_blocks[\"%s\"]", kb->name);
}