nodetraverser: always push primary input last if applicable

This commit is contained in:
itsmattkc
2022-05-07 09:39:08 -07:00
parent dabd6d5d3d
commit 21000c3aa7
5 changed files with 27 additions and 7 deletions
+5
View File
@@ -340,6 +340,11 @@ public:
values_.append(value);
}
void Push(const NodeValueTable& value)
{
values_.append(value.values_);
}
void Push(NodeValue::Type type, const QVariant& data, const Node *from, bool array = false, const QString& tag = QString())
{
Push(NodeValue(type, data, from, array, tag));