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:
authorNathan Craddock <nzcraddock@gmail.com>2020-09-20 01:27:56 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-09-20 01:33:45 +0300
commit94a63f75055024dbf0c9f9236b3cda5438fa2162 (patch)
tree3cca2bdf9c662dbc074d5a50595a8a00ff1e4e30 /source/blender/editors/include/ED_object.h
parent4115229637c0acdcffbaceae282ccd854bfdb1c8 (diff)
Fix T80945: Build modifier not updating after outliner copy
Build modifiers linked or copied to objects from the outliner would not animate until the file was saved and reopened due to a missing depsgraph relations tag.
Diffstat (limited to 'source/blender/editors/include/ED_object.h')
-rw-r--r--source/blender/editors/include/ED_object.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_object.h b/source/blender/editors/include/ED_object.h
index 45e23cadaaa..6fdd65fdcc9 100644
--- a/source/blender/editors/include/ED_object.h
+++ b/source/blender/editors/include/ED_object.h
@@ -430,7 +430,8 @@ int ED_object_modifier_copy(struct ReportList *reports,
struct Object *ob,
struct ModifierData *md);
void ED_object_modifier_link(struct bContext *C, struct Object *ob_dst, struct Object *ob_src);
-void ED_object_modifier_copy_to_object(struct Object *ob_dst,
+void ED_object_modifier_copy_to_object(struct bContext *C,
+ struct Object *ob_dst,
struct Object *ob_src,
struct ModifierData *md);