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:
authorTon Roosendaal <ton@blender.org>2010-12-24 19:45:04 +0300
committerTon Roosendaal <ton@blender.org>2010-12-24 19:45:04 +0300
commitb89816d94f896e0a5cdb1289d8c03b32ab2dc5a1 (patch)
tree25b14d5fa15d08fdd9d563f3a653fc4b786adfb3 /source/blender/editors/animation
parent77d08370cfa0abd318f3b0c06560262d6b67e3b9 (diff)
Bugfix #25366
Keyframe "Insert Visual" ignored new constraint type "Transform Like".
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframing.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index 899f5ed2229..e588a3610d8 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -572,6 +572,7 @@ static short visualkey_can_use (PointerRNA *ptr, PropertyRNA *prop)
case CONSTRAINT_TYPE_CHILDOF:
return 1;
case CONSTRAINT_TYPE_TRANSFORM:
+ case CONSTRAINT_TYPE_TRANSLIKE:
return 1;
case CONSTRAINT_TYPE_FOLLOWPATH:
return 1;