From 4f8980d48ea9ca122a55c4591823231e6a731387 Mon Sep 17 00:00:00 2001 From: Pavel Shliak Date: Sat, 2 Jul 2022 16:48:30 +0300 Subject: [PATCH] Allow selection of files without extension I have automatically generated images that do not match *.* as filename contains no dots. I have to rename them every time :( --- src/imagewriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagewriter.cpp b/src/imagewriter.cpp index 400a503..65b3faf 100644 --- a/src/imagewriter.cpp +++ b/src/imagewriter.cpp @@ -577,7 +577,7 @@ void ImageWriter::openFileDialog() QFileDialog *fd = new QFileDialog(nullptr, tr("Select image"), path, - "Image files (*.img *.zip *.iso *.gz *.xz *.zst);;All files (*.*)"); + "Image files (*.img *.zip *.iso *.gz *.xz *.zst);;All files (*)"); connect(fd, SIGNAL(fileSelected(QString)), SLOT(onFileSelected(QString))); if (_engine)