From 21eb33f233571463a2b902ff158e384aa776af13 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Fri, 27 Jan 2023 14:11:57 -0500 Subject: [PATCH] Right category for latent upscale node. --- nodes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodes.py b/nodes.py index cb69e1a8..aaec64f8 100644 --- a/nodes.py +++ b/nodes.py @@ -175,6 +175,8 @@ class LatentUpscale: RETURN_TYPES = ("LATENT",) FUNCTION = "upscale" + CATEGORY = "latent" + def upscale(self, samples, upscale_method, width, height, crop): if crop == "center": old_width = samples.shape[3]