"c_api/IndexReplicas_c.cpp" did not exist on "5ded39f5622e8ec400d05570454e8bd31c1227d4"
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