Fix T102153: crash when muting node group with active viewer

This commit is contained in:
Jacques Lucke
2022-11-06 15:39:57 +01:00
parent 0697631929
commit 25c6444bad

View File

@@ -876,6 +876,9 @@ static void find_side_effect_nodes_for_viewer_path(
if (found_node->id == nullptr) {
return;
}
if (found_node->is_muted()) {
return;
}
group_node_stack.push(found_node);
group = reinterpret_cast<bNodeTree *>(found_node->id);
compute_context_builder.push<blender::bke::NodeGroupComputeContext>(group_node_name);