From dab6c1f79dd4a3898d395f545755b1e2cb09091e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Wed, 14 Dec 2022 17:16:32 +0100 Subject: [PATCH] Add All files filter to open dialog --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 5a62c2e..ad73468 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -55,6 +55,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) nameFilter.append(mimeType.suffixes()); } _openFilter.append("*.fit *.fits *.xisf *.cr2 *.nef *.dng)"); + _openFilter.append(tr(";;All files (*)")); nameFilter.append({"fit", "fits", "xisf", "cr2", "nef", "dng"}); m_info = new ImageInfo(this);