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:
authorBastien Montagne <montagne29@wanadoo.fr>2017-08-15 16:26:22 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2017-08-15 16:26:22 +0300
commit90d80ddaa28908048e428fd08c4c771c015a0d66 (patch)
tree3ec960a919cdeb1e2bd571a1d8be3a20f5d17f5c /source
parent3bca9f5fed1f6d3dd485e3cff2174c3394bb1162 (diff)
Fix new Scene ID copying code.
Missed depsgraph_legacy new pointer to nullify when merged/adapted new ID copying code to blender2.8.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/scene.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/intern/scene.c b/source/blender/blenkernel/intern/scene.c
index f71191a2211..807c672d234 100644
--- a/source/blender/blenkernel/intern/scene.c
+++ b/source/blender/blenkernel/intern/scene.c
@@ -228,6 +228,7 @@ void BKE_scene_copy_data(Main *bmain, Scene *sce_dst, const Scene *sce_src, cons
sce_dst->ed = NULL;
sce_dst->theDag = NULL;
+ sce_dst->depsgraph_legacy = NULL;
sce_dst->obedit = NULL;
sce_dst->fps_info = NULL;