From 32d6aa141b8b6eede1e8d32a170f257b1fb9409c Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Tue, 21 Sep 2021 11:30:40 -0700 Subject: [PATCH] maybe this will do it --- app/common/xmlutils.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/common/xmlutils.cpp b/app/common/xmlutils.cpp index e46b91236..0b219807a 100644 --- a/app/common/xmlutils.cpp +++ b/app/common/xmlutils.cpp @@ -33,7 +33,8 @@ void XMLConnectNodes(const XMLNodeData &xml_node_data, MultiUndoCommand *command Node *out = xml_node_data.node_ptrs.value(con.output_node); if (out) { - Node::ValueHint hint = { QVector(), -1, con.output_param }; + Node::ValueHint hint; + hint.tag = con.output_param; if (command) { command->add_child(new NodeEdgeAddCommand(out, con.input));