"vscode:/vscode.git/clone" did not exist on "b9d3e8eeec88d9522d2f391e4e50346e6e5cee39"
Commit 638f9245 authored by comfyanonymous's avatar comfyanonymous
Browse files

Sort the list of input images.

parent 6135a21e
...@@ -640,7 +640,7 @@ class LoadImage: ...@@ -640,7 +640,7 @@ class LoadImage:
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": return {"required":
{"image": (os.listdir(s.input_dir), )}, {"image": (sorted(os.listdir(s.input_dir)), )},
} }
CATEGORY = "image" CATEGORY = "image"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment