We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fca1eb commit f89d275Copy full SHA for f89d275
python/plugins/processing/gui/InputLayerSelectorPanel.py
@@ -63,7 +63,7 @@ def showSelectionDialog(self):
63
path = ''
64
65
filename = QtGui.QFileDialog.getOpenFileName(self, self.param.description, path,
66
- self.param.getFileFilter())
+ 'All files(*.*);;' + self.param.getFileFilter())
67
if filename:
68
self.text.addItem(filename, filename)
69
self.text.setCurrentIndex(self.text.count() - 1)
0 commit comments