[processing] allow to select files without suffix in the Processing

options dialog
This commit is contained in:
Alexander Bruy 2019-10-28 11:07:57 +02:00
parent b9d219e19b
commit 094359f7b2

View File

@ -463,7 +463,7 @@ class FileDirectorySelector(QWidget):
QFileDialog.ShowDirsOnly)
else:
selectedPath, selected_filter = QFileDialog.getOpenFileName(None,
self.tr('Select file'), lastDir, self.tr('All files (*.*)')
self.tr('Select file'), lastDir, self.tr('All files (*)')
)
if not selectedPath: