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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-06-08 16:42:42 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-06-08 16:43:04 +0300
commit06357b23a2a410e7e6e13d3dd8fe01da13788ac8 (patch)
treec107439ae4f6570b3197617c0e75fa7ccd035ba8 /source/blender/editors/animation
parent9f2447cbd8161941fdc48360a3e60b264fe50bbf (diff)
Fix T55404: Auto key with only-available doesn't work
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframing.c4
1 files changed, 4 insertions, 0 deletions
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;
}