Skip to content

Commit

Permalink
[processing] Give an option for all file types to be used as input la…
Browse files Browse the repository at this point in the history
…yer to processing algorithms.
  • Loading branch information
Rado Guzinski committed Jun 27, 2014
1 parent 1fca1eb commit f89d275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/InputLayerSelectorPanel.py
Expand Up @@ -63,7 +63,7 @@ def showSelectionDialog(self):
path = ''

filename = QtGui.QFileDialog.getOpenFileName(self, self.param.description, path,
self.param.getFileFilter())
'All files(*.*);;' + self.param.getFileFilter())
if filename:
self.text.addItem(filename, filename)
self.text.setCurrentIndex(self.text.count() - 1)
Expand Down

0 comments on commit f89d275

Please sign in to comment.