[Bf-blender-cvs] [cd8613c6e7f] blender2.8: Fix T55319: Keyframing issues

Sergey Sharybin noreply at git.blender.org
Tue Jun 5 12:02:25 CEST 2018


Commit: cd8613c6e7f04a822824742a3c0e21b017955053
Author: Sergey Sharybin
Date:   Tue Jun 5 11:56:46 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBcd8613c6e7f04a822824742a3c0e21b017955053

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.

===================================================================

M	source/blender/editors/animation/keyingsets.c

===================================================================

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:



More information about the Bf-blender-cvs mailing list