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-07-03 17:30:34 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-07-03 17:31:33 +0300
commit5b2705adf659455399cecf873f7548e5e293f521 (patch)
tree1a50137935aca1f419a3e1e10dc43ba4e43e605a /source/blender/blenkernel/intern/sequencer.c
parentc44144835974ad877212973a4ae45c03b7c66f80 (diff)
Fix T66353: VSE: Missing updates when moving strip with animation
Diffstat (limited to 'source/blender/blenkernel/intern/sequencer.c')
-rw-r--r--source/blender/blenkernel/intern/sequencer.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/sequencer.c b/source/blender/blenkernel/intern/sequencer.c
index 971ca77ff3d..f2e0ee0c7fa 100644
--- a/source/blender/blenkernel/intern/sequencer.c
+++ b/source/blender/blenkernel/intern/sequencer.c
@@ -5203,6 +5203,8 @@ void BKE_sequencer_offset_animdata(Scene *scene, Sequence *seq, int ofs)
}
}
}
+
+ DEG_id_tag_update(&scene->adt->action->id, ID_RECALC_ANIMATION);
}
void BKE_sequencer_dupe_animdata(Scene *scene, const char *name_src, const char *name_dst)