From f0a22f5dd08561637ae3487f2d91ec566687e7c4 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 19 Feb 2020 18:10:35 +0100 Subject: Fix T73932: modifying keyframes in nodes fails when there is an image sequence Image animation should not be an depsgraph node of type ANIMATION, there is no need for it to be affected by the special casing for that. --- source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc') diff --git a/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc b/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc index b2f2359a954..b08281b755e 100644 --- a/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc +++ b/source/blender/depsgraph/intern/debug/deg_debug_relations_graphviz.cc @@ -428,6 +428,7 @@ static void deg_debug_graphviz_node(const DebugContext &ctx, const Node *node) case NodeType::SHADING_PARAMETERS: case NodeType::CACHE: case NodeType::POINT_CACHE: + case NodeType::IMAGE_ANIMATION: case NodeType::LAYER_COLLECTIONS: case NodeType::PARTICLE_SYSTEM: case NodeType::PARTICLE_SETTINGS: -- cgit v1.2.3