Fix handling of .iso files

Do not let libarchive treat iso as archive that needs to be
extracted.
This commit is contained in:
Floris Bos 2021-01-26 22:17:56 +01:00
parent abbed47f97
commit ab29b218af
2 changed files with 3 additions and 2 deletions

View file

@ -502,7 +502,7 @@ void ImageWriter::openFileDialog()
QFileDialog *fd = new QFileDialog(nullptr, tr("Select image"),
path,
"Image files (*.img *.zip *.gz *.xz);;All files (*.*)");
"Image files (*.img *.zip *.iso *.gz *.xz);;All files (*.*)");
connect(fd, SIGNAL(fileSelected(QString)), SLOT(onFileSelected(QString)));
if (_engine)