Add FTS and FZ as FITS file suffix

This commit is contained in:
2024-09-30 19:56:53 +02:00
parent 32973c54ce
commit a43f12565d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -501,7 +501,7 @@ bool loadImage(const QString &path, ImageInfoData &info, std::shared_ptr<RawImag
ret = loadRAW(path, info, rawImage);
qDebug() << "LoadRAW" << timer.elapsed();
}
else if(path.endsWith(".FIT", Qt::CaseInsensitive) || path.endsWith(".FITS", Qt::CaseInsensitive))
else if(path.endsWith(".FIT", Qt::CaseInsensitive) || path.endsWith(".FITS", Qt::CaseInsensitive) || path.endsWith(".FZ", Qt::CaseInsensitive) || path.endsWith(".FTS", Qt::CaseInsensitive))
{
ret = loadFITS(path, info, rawImage, planar);
qDebug() << "LoadFITS" << timer.elapsed();