Allow image sequences to use a period seperator

Allows image sequences of the form xyz.0000.exr as well as xyz_0000.exr

Fixes #1602
This commit is contained in:
Thomas Wilshaw
2021-05-03 12:09:24 +01:00
parent 0b259d3a63
commit 7e93eb6e40
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;
}