From cf807bec0f1da24392eb59124c75778da0f1dff1 Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Sat, 9 May 2026 21:14:54 +0800 Subject: [PATCH] Move save nodes to image root catefory --- comfy_extras/nodes_images.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index 1ac740d1d..a48148e5e 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -192,7 +192,8 @@ class SaveAnimatedWEBP(IO.ComfyNode): def define_schema(cls): return IO.Schema( node_id="SaveAnimatedWEBP", - category="image/animation", + display_name="Save Animated WEBP", + category="image", inputs=[ IO.Image.Input("images"), IO.String.Input("filename_prefix", default="ComfyUI"), @@ -229,7 +230,8 @@ class SaveAnimatedPNG(IO.ComfyNode): def define_schema(cls): return IO.Schema( node_id="SaveAnimatedPNG", - category="image/animation", + display_name="Save Animated PNG", + category="image", inputs=[ IO.Image.Input("images"), IO.String.Input("filename_prefix", default="ComfyUI"), @@ -491,7 +493,7 @@ class SaveSVGNode(IO.ComfyNode): search_aliases=["export vector", "save vector graphics"], display_name="Save SVG", description="Save SVG files on disk.", - category="image/save", + category="image", inputs=[ IO.SVG.Input("svg"), IO.String.Input(