From 8825835ae94f451cc8782a546c4314a21792b6c9 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Mon, 5 May 2025 01:29:47 -0700 Subject: [PATCH] Fix: Luma I2I fails when weight is <=0.01 (#132) --- comfy_api_nodes/nodes_luma.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/nodes_luma.py b/comfy_api_nodes/nodes_luma.py index 7b95a1f41..32c054c61 100644 --- a/comfy_api_nodes/nodes_luma.py +++ b/comfy_api_nodes/nodes_luma.py @@ -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.",