"configs/datasets/vscode:/vscode.git/clone" did not exist on "a256753221ad2a33ec9750b31f6284b581c1e1fd"
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 ...@@ -84,6 +84,7 @@ export function addValueControlWidget(node, targetWidget, defaultValue = "random
if (targetWidget.value > max) if (targetWidget.value > max)
targetWidget.value = max; targetWidget.value = max;
targetWidget.callback(targetWidget.value);
} }
} }
return valueControl; 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