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)]) }