We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a0bc52 commit 2c129beCopy full SHA for 2c129be
src/main/java/org/scijava/ui/swing/widget/SwingFileListWidget.java
@@ -284,6 +284,7 @@ private List<File> getFilesFromFolder(File inputFolder) {
284
.asList((Files.walk(inputFolder.toPath())
285
.filter(path -> filter.accept(path.toFile())))
286
.map(path -> path.toFile())
287
+ .sorted()
288
.toArray(File[]::new));
289
} catch (IOException exc) {
290
logService
0 commit comments