Commit 2ec6158e authored by comfyanonymous's avatar comfyanonymous
Browse files

Call widget callback on value control to fix primitive node issue.

parent 8594c8be
......@@ -84,6 +84,7 @@ export function addValueControlWidget(node, targetWidget, defaultValue = "random
if (targetWidget.value > max)
targetWidget.value = max;
targetWidget.callback(targetWidget.value);
}
}
return valueControl;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment