Commit 638f9245 authored by comfyanonymous's avatar comfyanonymous
Browse files

Sort the list of input images.

parent 6135a21e
......@@ -640,7 +640,7 @@ class LoadImage:
@classmethod
def INPUT_TYPES(s):
return {"required":
{"image": (os.listdir(s.input_dir), )},
{"image": (sorted(os.listdir(s.input_dir)), )},
}
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