ensures copied graph is updated when values are copied

While the copied graph doesn't pick up InvalidateCache signals, some node
processing relies on NodeInput update signals to update their internals
correctly.
This commit is contained in:
itsmattkc
2019-12-14 23:16:30 +11:00
parent c0802c05ad
commit a9f59b54de
+2
View File
@@ -299,4 +299,6 @@ void NodeInput::CopyValues(NodeInput *source, NodeInput *dest, bool include_conn
CopyValues(src_array->At(i), dst_array->At(i), include_connections);
}
}
emit dest->ValueChanged(RATIONAL_MIN, RATIONAL_MAX);
}