From d3d830ceb3f30bbf79676b2cc6dccb1589073401 Mon Sep 17 00:00:00 2001 From: Uriel Deveaud Date: Wed, 30 Oct 2024 05:42:20 -0600 Subject: [PATCH] Update nodes_images.py Nodes menu has inconsistency in names, some with spaces between words, other not. --- comfy_extras/nodes_images.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index af37666b2..f2f2b0e9d 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -187,7 +187,7 @@ class SaveAnimatedPNG: return { "ui": { "images": results, "animated": (True,)} } NODE_CLASS_MAPPINGS = { - "ImageCrop": ImageCrop, + "Image Crop": ImageCrop, "RepeatImageBatch": RepeatImageBatch, "ImageFromBatch": ImageFromBatch, "SaveAnimatedWEBP": SaveAnimatedWEBP,