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
@@ -62,7 +62,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
_openFilter.append(" ");
nameFilter.append(mimeType.suffixes());
}
_openFilter.append("*.fit *.fits *.xisf *.cr2 *.cr3 *.nef *.dng)");
_openFilter.append("*.fit *.fits *.fts *.fz *.xisf *.cr2 *.cr3 *.nef *.dng)");
_openFilter.append(tr(";;All files (*)"));
nameFilter.append({"fit", "fits", "xisf", "cr2", "cr3", "nef", "dng"});
QImageReader::setAllocationLimit(0);