Default control_after_generate to fixed in PrimitiveInt node (#13690)

This commit is contained in:
Jedrzej Kosinski 2026-05-03 16:21:34 -07:00 committed by GitHub
parent cea8d0925f
commit 2806163f6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,7 +49,7 @@ class Int(io.ComfyNode):
display_name="Int",
category="utils/primitive",
inputs=[
io.Int.Input("value", min=-sys.maxsize, max=sys.maxsize, control_after_generate=True),
io.Int.Input("value", min=-sys.maxsize, max=sys.maxsize, control_after_generate=io.ControlAfterGenerate.fixed),
],
outputs=[io.Int.Output()],
)