From 0f0029ca29f4a11b37b84cd4d575280484bdd9e9 Mon Sep 17 00:00:00 2001 From: Terry Jia Date: Sat, 14 Feb 2026 17:10:51 -0500 Subject: [PATCH] fix: hide output images for ImageCropV2 node (#8873) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary using the new hideOutputImages flag for image crop. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8873-fix-hide-output-images-for-ImageCropV2-node-3076d73d365081079839dfc9b801606c) by [Unito](https://www.unito.io) --- src/extensions/core/imageCrop.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/extensions/core/imageCrop.ts b/src/extensions/core/imageCrop.ts index b4de27a461..d66b5dc2be 100644 --- a/src/extensions/core/imageCrop.ts +++ b/src/extensions/core/imageCrop.ts @@ -6,6 +6,7 @@ useExtensionService().registerExtension({ async nodeCreated(node) { if (node.constructor.comfyClass !== 'ImageCropV2') return + node.hideOutputImages = true const [oldWidth, oldHeight] = node.size node.setSize([Math.max(oldWidth, 300), Math.max(oldHeight, 450)]) }