Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #32460 from alexbruy/backport-32455-to-release-3_4
[Backport release-3_4] [processing] allow to select files without suffix in the Processing options dialog
  • Loading branch information
alexbruy committed Nov 17, 2019
2 parents 4009193 + e63b3e7 commit aa7af8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ConfigDialog.py
Expand Up @@ -467,7 +467,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 aa7af8f

Please sign in to comment.