Merge pull request #1603 from ThomasWilshaw/Fix_1602

Allow image sequences to use a period seperator
This commit is contained in:
itsmattkc
2021-05-03 22:08:22 +10:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ bool OIIODecoder::FileTypeIsSupported(const QString& fn)
}
}
if (!supported_formats_.contains(QFileInfo(fn).completeSuffix(), Qt::CaseInsensitive)) {
if (!supported_formats_.contains(QFileInfo(fn).suffix(), Qt::CaseInsensitive)) {
return false;
}