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>2017-01-25 14:30:29 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-01-25 14:30:29 +0300
commite29a6f739de36f4d33cd37181a946345bd26503d (patch)
tree45e9f7b48ee20cd578d328f2494a62778df60f4c /source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
parente4de6e87e1bb91c072ac2bb800214de006942801 (diff)
Fix T50512: Linked Backround scene with animation not updating with new depsgraph
Was missing relations for the set scenes. Perhaps not ideal solution, but should be good enough for now.
Diffstat (limited to 'source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
index 57429417357..af9eda1b5ce 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_scene.cc
@@ -70,7 +70,7 @@ namespace DEG {
void DepsgraphRelationBuilder::build_scene(Main *bmain, Scene *scene)
{
if (scene->set) {
- // TODO: link set to scene, especially our timesource...
+ build_scene(bmain, scene->set);
}
/* scene objects */