Skip to content

Commit f89d275

Browse files
author
Rado Guzinski
committed
[processing] Give an option for all file types to be used as input layer to processing algorithms.
1 parent 1fca1eb commit f89d275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/InputLayerSelectorPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def showSelectionDialog(self):
6363
path = ''
6464

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

0 commit comments

Comments
 (0)