From c8f1acc4ebda02b63a454a63d359035dc50d4a66 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Sat, 11 Mar 2023 18:10:36 -0500 Subject: [PATCH] Put image upscaling nodes in image/upscaling category. --- comfy_extras/nodes_upscale_model.py | 2 +- nodes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_upscale_model.py b/comfy_extras/nodes_upscale_model.py index 298aab80..98e9863e 100644 --- a/comfy_extras/nodes_upscale_model.py +++ b/comfy_extras/nodes_upscale_model.py @@ -35,7 +35,7 @@ class ImageUpscaleWithModel: RETURN_TYPES = ("IMAGE",) FUNCTION = "upscale" - CATEGORY = "image" + CATEGORY = "image/upscaling" def upscale(self, upscale_model, image): device = comfy.model_management.get_torch_device() diff --git a/nodes.py b/nodes.py index 7a9e598e..0a0a0a9c 100644 --- a/nodes.py +++ b/nodes.py @@ -907,7 +907,7 @@ class ImageScale: RETURN_TYPES = ("IMAGE",) FUNCTION = "upscale" - CATEGORY = "image" + CATEGORY = "image/upscaling" def upscale(self, image, upscale_method, width, height, crop): samples = image.movedim(-1,1)