Bugfix: One more place still using the old "keys" instead of

"key_blocks"
This commit is contained in:
Joshua Leung
2011-03-27 23:19:32 +00:00
parent 84befe2056
commit 89c2357892

View File

@@ -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);
}