Fix VAEDecodeTiled minimum.
This commit is contained in:
parent
1c012d69af
commit
57beace324
2
nodes.py
2
nodes.py
|
@ -245,7 +245,7 @@ class VAEDecodeTiled:
|
|||
@classmethod
|
||||
def INPUT_TYPES(s):
|
||||
return {"required": {"samples": ("LATENT", ), "vae": ("VAE", ),
|
||||
"tile_size": ("INT", {"default": 512, "min": 192, "max": 4096, "step": 64})
|
||||
"tile_size": ("INT", {"default": 512, "min": 320, "max": 4096, "step": 64})
|
||||
}}
|
||||
RETURN_TYPES = ("IMAGE",)
|
||||
FUNCTION = "decode"
|
||||
|
|
Loading…
Reference in New Issue