[Bf-blender-cvs] [06357b23a2a] blender2.8: Fix T55404: Auto key with only-available doesn't work

Sergey Sharybin noreply at git.blender.org
Fri Jun 8 15:43:09 CEST 2018


Commit: 06357b23a2a410e7e6e13d3dd8fe01da13788ac8
Author: Sergey Sharybin
Date:   Fri Jun 8 15:42:42 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB06357b23a2a410e7e6e13d3dd8fe01da13788ac8

Fix T55404: Auto key with only-available doesn't work

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

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

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

diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index 6f2360767c0..1913eb944d9 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -1106,6 +1106,10 @@ short insert_keyframe(
 		}
 	}
 
+	if (ret) {
+		DEG_id_tag_update(&adt->action->id, DEG_TAG_COPY_ON_WRITE);
+	}
+
 	return ret;
 }



More information about the Bf-blender-cvs mailing list