Skip to content

Commit 84950f5

Browse files
volayajef-n
authored andcommittedJul 11, 2014
[processing] fixed #10792
1 parent df5c1f0 commit 84950f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/modeler/ModelerParametersDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def getWidgetFromParameter(self, param):
503503
elif isinstance(param, ParameterFile):
504504
item = QtGui.QComboBox()
505505
item.setEditable(True)
506-
files = self.getFiles()
506+
files = self.getAvailableValuesOfType(ParameterFile, OutputFile)
507507
for f in files:
508508
item.addItem(f.name(), f)
509509
else:

0 commit comments

Comments
 (0)
Please sign in to comment.