Fix: Luma I2I fails when weight is <=0.01 (#132)

This commit is contained in:
Christian Byrne 2025-05-05 01:29:47 -07:00 committed by GitHub
parent d010dd9d80
commit 8825835ae9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -327,7 +327,7 @@ class LumaImageModifyNode(ComfyNodeABC):
IO.FLOAT,
{
"default": 1.0,
"min": 0.0,
"min": 0.2,
"max": 1.0,
"step": 0.01,
"tooltip": "Weight of the image; the closer to 0.0, the less the image will be modified.",