nodeparamview: don't set properties if the root of an array

This commit is contained in:
itsmattkc
2021-04-13 22:41:01 +10:00
parent 157da658a5
commit 3590a84945
@@ -535,7 +535,7 @@ void NodeParamViewWidgetBridge::InputValueChanged(const NodeInput &input, const
void NodeParamViewWidgetBridge::PropertyChanged(const QString& input, const QString &key, const QVariant &value)
{
if (input != input_.input()) {
if (input != input_.input() || (input_.IsArray() && input_.element() == -1)) {
return;
}