From e003633be0ba4120f9af800b8fdf61ee882260ee Mon Sep 17 00:00:00 2001 From: bymyself Date: Tue, 11 Feb 2025 01:40:55 -0700 Subject: [PATCH] mark node as beta --- nodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index ed3787a77..4c12138bd 100644 --- a/nodes.py +++ b/nodes.py @@ -1769,7 +1769,7 @@ class LoadImageOutput(LoadImage): def INPUT_TYPES(s): return { "required": { - "image": ([], { + "image": ("COMBO", { "image_upload": True, "image_folder": "output", "remote": { @@ -1782,6 +1782,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):