Merge pull request #7143 from christian-byrne/fix-remote-widget-node

Fix LoadImageOutput node
This commit is contained in:
comfyanonymous 2025-03-11 04:30:25 -04:00 committed by GitHub
commit bc219a6487
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1785,14 +1785,7 @@ class LoadImageOutput(LoadImage):
DESCRIPTION = "Load an image from the output folder. When the refresh button is clicked, the node will update the image list and automatically select the first image, allowing for easy iteration."
EXPERIMENTAL = True
FUNCTION = "load_image_output"
def load_image_output(self, image):
return self.load_image(f"{image} [output]")
@classmethod
def VALIDATE_INPUTS(s, image):
return True
FUNCTION = "load_image"
class ImageScale: