From 4ed029fc02b022cb5ff28ed3ce70992c450d2be5 Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Sun, 18 Jul 2021 15:06:48 -0300 Subject: Fix T89929: Crash when hiding in the render a previously keyframed volume Regression introduced in {rBbfa3dc91b754}. `ID_RECALC_GEOMETRY` should tag all operations of the `GEOMETRY` component and not just the operation of node `GEOMETRY_EVAL_INIT`. --- source/blender/depsgraph/intern/depsgraph_tag.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/depsgraph/intern/depsgraph_tag.cc') diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc index 34b33e9a6c0..063126ff864 100644 --- a/source/blender/depsgraph/intern/depsgraph_tag.cc +++ b/source/blender/depsgraph/intern/depsgraph_tag.cc @@ -168,7 +168,6 @@ void depsgraph_tag_to_component_opcode(const ID *id, break; case ID_RECALC_GEOMETRY: depsgraph_geometry_tag_to_component(id, component_type); - *operation_code = OperationCode::GEOMETRY_EVAL_INIT; break; case ID_RECALC_GEOMETRY_DEFORM: depsgraph_geometry_tag_to_component(id, component_type); -- cgit v1.2.3