From 8ce28693905714af0cf6663421efb36859caf2fb Mon Sep 17 00:00:00 2001 From: 42lux Date: Tue, 28 Nov 2023 22:18:25 +0100 Subject: [PATCH] Update nodes.py Higher max value for grow mask in VAEEncodeForInpaint. --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 8b4a9b119..69689aca7 100644 --- a/nodes.py +++ b/nodes.py @@ -323,7 +323,7 @@ class VAEEncodeTiled: class VAEEncodeForInpaint: @classmethod def INPUT_TYPES(s): - return {"required": { "pixels": ("IMAGE", ), "vae": ("VAE", ), "mask": ("MASK", ), "grow_mask_by": ("INT", {"default": 6, "min": 0, "max": 64, "step": 1}),}} + return {"required": { "pixels": ("IMAGE", ), "vae": ("VAE", ), "mask": ("MASK", ), "grow_mask_by": ("INT", {"default": 6, "min": 0, "max": 1024, "step": 1}),}} RETURN_TYPES = ("LATENT",) FUNCTION = "encode"