From 1929d8b032f8a156e7b5b328bc675965017fb283 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Mon, 22 Dec 2025 16:28:32 -0800 Subject: [PATCH] Change default crop option to "center" on Resize Image/Mask node --- comfy_extras/nodes_post_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_post_processing.py b/comfy_extras/nodes_post_processing.py index 73bc604ef..5697a1c88 100644 --- a/comfy_extras/nodes_post_processing.py +++ b/comfy_extras/nodes_post_processing.py @@ -381,7 +381,7 @@ class ResizeImageMaskNode(io.ComfyNode): @classmethod def define_schema(cls): template = io.MatchType.Template("input_type", [io.Image, io.Mask]) - crop_combo = io.Combo.Input("crop", options=cls.crop_methods) + crop_combo = io.Combo.Input("crop", options=cls.crop_methods, default="center") return io.Schema( node_id="ResizeImageMaskNode", display_name="Resize Image/Mask",