Skip to content

Commit

Permalink
[Processing] Add *.* file filter to batch processing input panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Rado Guzinski committed Jul 22, 2014
1 parent b115ea6 commit 38390bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchInputSelectionPanel.py
Expand Up @@ -115,7 +115,7 @@ def showFileSelectionDialog(self):
path = ''

ret = QtGui.QFileDialog.getOpenFileNames(self, 'Open file', path,
self.param.getFileFilter())
'All files(*.*);;' + self.param.getFileFilter())
if ret:
files = list(ret)
if len(files) == 1:
Expand Down

0 comments on commit 38390bf

Please sign in to comment.