Update default width and height in EmptyLatentImage (#16384)

This commit is contained in:
Alexis Rolland
2026-09-17 19:47:58 -04:00
committed by GitHub
parent cf5cc2b698
commit fd88b3c412
+2 -2
View File
@@ -1248,8 +1248,8 @@ class EmptyLatentImage:
def INPUT_TYPES(s): def INPUT_TYPES(s):
return { return {
"required": { "required": {
"width": ("INT", {"default": 512, "min": 16, "max": MAX_RESOLUTION, "step": 8, "tooltip": "The width of the latent images in pixels."}), "width": ("INT", {"default": 1024, "min": 16, "max": MAX_RESOLUTION, "step": 8, "tooltip": "The width of the latent images in pixels."}),
"height": ("INT", {"default": 512, "min": 16, "max": MAX_RESOLUTION, "step": 8, "tooltip": "The height of the latent images in pixels."}), "height": ("INT", {"default": 1024, "min": 16, "max": MAX_RESOLUTION, "step": 8, "tooltip": "The height of the latent images in pixels."}),
"batch_size": ("INT", {"default": 1, "min": 1, "max": 4096, "tooltip": "The number of latent images in the batch."}) "batch_size": ("INT", {"default": 1, "min": 1, "max": 4096, "tooltip": "The number of latent images in the batch."})
} }
} }