Depsgraph: Allow flush of CoW tag from Action

This way we guarantee that action tagged for CoW will ensure
order of updates with objects which are using it.

Fixes T57870: Scaling keyframes in Graph Editor causes crash
Fixes T57971: Moving keys in the Dopesheet crashes with Segfault 11
Fixes T57530: Moving keys on a rig, Crash
Fixee T57491: Crash when trying to move keyframe in dope sheet
This commit is contained in:
Sergey Sharybin
2018-11-21 16:12:42 +01:00
parent 693233b198
commit 2a354dd4bd

View File

@@ -2427,7 +2427,8 @@ void DepsgraphRelationBuilder::build_copy_on_write_relations(IDDepsNode *id_node
* that cached array fo bases exists and is up-to-date.
*/
if (comp_node->type == DEG_NODE_TYPE_PARAMETERS ||
comp_node->type == DEG_NODE_TYPE_LAYER_COLLECTIONS)
comp_node->type == DEG_NODE_TYPE_LAYER_COLLECTIONS ||
(comp_node->type == DEG_NODE_TYPE_ANIMATION && id_type == ID_AC))
{
rel_flag &= ~DEPSREL_FLAG_NO_FLUSH;
}