fixed input array sync issue

This commit is contained in:
itsmattkc
2021-02-20 23:09:49 +11:00
parent f4df6a7918
commit 108a1399c2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1437,7 +1437,7 @@ void Node::CopyValuesOfElement(Node *src, Node *dst, const QString &input, int s
// If this is the root of an array, copy the array size
if (src_element == -1 && dst_element == -1) {
dst->InputArrayResize(input, dst->InputArraySize(input));
dst->ArrayResizeInternal(input, src->InputArraySize(input));
}
}