Fix: dynamic node declaration is not resetting update-skip flag

This commit is contained in:
Jacques Lucke 2023-10-06 18:37:29 +02:00
parent c6194afc41
commit b04f006a4c
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ void build_node_declaration_dynamic(const bNodeTree &node_tree,
r_declaration.items.clear();
r_declaration.inputs.clear();
r_declaration.outputs.clear();
r_declaration.skip_updating_sockets = false;
node.typeinfo->declare_dynamic(node_tree, node, r_declaration);
}