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
path: root/source
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2019-06-03 11:30:38 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-06-03 12:25:41 +0300
commita2a05acb4ae66cc4b1870cd05d652b5def66c75c (patch)
treec529c094ae2c7b8689a6d921a84f96616131f8db /source
parentccc7ebf7b1bb5ba422efc8112d2c586a0b80af92 (diff)
Fix T65399: crash playing animation after applying smoke flow modifier
missing DEG update. Reviewers: sergey Maniphest Tasks: T65399 Differential Revision: https://developer.blender.org/D4996
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/object/object_modifier.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 8d3a636671a..42f819b9f42 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -1133,6 +1133,7 @@ static int modifier_apply_exec(bContext *C, wmOperator *op)
}
DEG_id_tag_update(&ob->id, ID_RECALC_GEOMETRY);
+ DEG_relations_tag_update(bmain);
WM_event_add_notifier(C, NC_OBJECT | ND_MODIFIER, ob);
return OPERATOR_FINISHED;