Skip to content

Commit

Permalink
[processing] allow to select files without suffix in the Processing
Browse files Browse the repository at this point in the history
options dialog
  • Loading branch information
alexbruy committed Oct 28, 2019
1 parent b9d219e commit 094359f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ConfigDialog.py
Expand Up @@ -463,7 +463,7 @@ def select(self):
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:
Expand Down

0 comments on commit 094359f

Please sign in to comment.