Skip to content

Commit

Permalink
FujiReader: always list pixelsFile first
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Jul 22, 2024
1 parent 8b3a002 commit 40690b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/formats-gpl/src/loci/formats/in/FujiReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public String[] getSeriesUsedFiles(boolean noPixels) {
if (noPixels) {
return new String[] {infFile};
}
return new String[] {infFile, pixelsFile};
return new String[] {pixelsFile, infFile};
}

/* @see loci.formats.IFormatReader#fileGroupOption(String) */
Expand Down

0 comments on commit 40690b9

Please sign in to comment.