From fd88b3c412875a996123908fde02284dec1f5525 Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Thu, 17 Sep 2026 16:47:58 -0700 Subject: [PATCH] Update default width and height in EmptyLatentImage (#16384) --- nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes.py b/nodes.py index 1728899fe..9bbba5a29 100644 --- a/nodes.py +++ b/nodes.py @@ -1248,8 +1248,8 @@ class EmptyLatentImage: def INPUT_TYPES(s): return { "required": { - "width": ("INT", {"default": 512, "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."}), + "width": ("INT", {"default": 1024, "min": 16, "max": MAX_RESOLUTION, "step": 8, "tooltip": "The width 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."}) } }