LatentCompositeMasked: negative x, y don't work.

This commit is contained in:
comfyanonymous 2023-04-14 00:49:19 -04:00
parent f48f0872e2
commit d98a4de9eb

View File

@ -9,8 +9,8 @@ class LatentCompositeMasked:
"required": {
"destination": ("LATENT",),
"source": ("LATENT",),
"x": ("INT", {"default": 0, "min": -MAX_RESOLUTION, "max": MAX_RESOLUTION, "step": 8}),
"y": ("INT", {"default": 0, "min": -MAX_RESOLUTION, "max": MAX_RESOLUTION, "step": 8}),
"x": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 8}),
"y": ("INT", {"default": 0, "min": 0, "max": MAX_RESOLUTION, "step": 8}),
},
"optional": {
"mask": ("MASK",),