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>2019-03-20 13:48:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-03-20 13:49:07 +0300
commit1d5c85ffd9f52f94b7262f8adecad8fa71339ab7 (patch)
tree011af42d9a394b8df32050417e44247fd6b87998 /source/blender
parent0c44b7e177f394fe93d236aeb4b9ba7b14b2191c (diff)
Fix T62750: Deleted Keyframe Still Affects Scene
Missing ID recalc tag.
Diffstat (limited to 'source/blender')
-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 513fd29ef9b..49695da2a17 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -1975,6 +1975,7 @@ static int delete_key_v3d_exec(bContext *C, wmOperator *op)
*/
success += delete_keyframe_fcurve(adt, fcu, cfra_unmap);
}
+ DEG_id_tag_update(&ob->adt->action->id, ID_RECALC_ANIMATION_NO_FLUSH);
}
/* report success (or failure) */