From cd8613c6e7f04a822824742a3c0e21b017955053 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 5 Jun 2018 11:56:46 +0200 Subject: Fix T55319: Keyframing issues The issue was that keyframing from menu would tag object for animation update, which was making object to loose unkeyed changes. --- source/blender/editors/animation/keyingsets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/animation/keyingsets.c b/source/blender/editors/animation/keyingsets.c index c443c66d0f5..a4204715678 100644 --- a/source/blender/editors/animation/keyingsets.c +++ b/source/blender/editors/animation/keyingsets.c @@ -1051,7 +1051,7 @@ int ANIM_apply_keyingset(bContext *C, ListBase *dsources, bAction *act, KeyingSe Object *ob = (Object *)ksp->id; // XXX: only object transforms? - DEG_id_tag_update(&ob->id, OB_RECALC_OB | OB_RECALC_DATA | OB_RECALC_TIME); + DEG_id_tag_update(&ob->id, OB_RECALC_OB | OB_RECALC_DATA); break; } default: -- cgit v1.2.3