Commit: f5908e45d5b121de1ded0b32a4ae517da5be87a4 Author: Sergey Sharybin Date: Wed Jun 5 15:51:50 2019 +0200 Branches: master https://developer.blender.org/rBf5908e45d5b121de1ded0b32a4ae517da5be87a4
Fix T64336: Switching to a Camera which is hidden, does not evaluate the animation data Changing camera might require more objects pulled into the dependency graph, so need tag relations for update. =================================================================== M source/blender/makesrna/intern/rna_scene.c =================================================================== diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 0f0d057845e..7a1a0c7ab92 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -814,6 +814,7 @@ static void rna_Scene_camera_update(Main *bmain, Scene *UNUSED(scene_unused), Po WM_windows_scene_data_sync(&wm->windows, scene); DEG_id_tag_update(&scene->id, ID_RECALC_COPY_ON_WRITE); + DEG_relations_tag_update(bmain); } static void rna_Scene_fps_update(Main *UNUSED(bmain), Scene *scene, PointerRNA *UNUSED(ptr)) _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
