Skip to content
Permalink
Browse files
[processing] fixed #10792
  • Loading branch information
volaya authored and jef-n committed Jul 11, 2014
1 parent df5c1f0 commit 84950f5
Showing 1 changed file with 1 addition and 1 deletion.
@@ -503,7 +503,7 @@ def getWidgetFromParameter(self, param):
elif isinstance(param, ParameterFile):
item = QtGui.QComboBox()
item.setEditable(True)
files = self.getFiles()
files = self.getAvailableValuesOfType(ParameterFile, OutputFile)
for f in files:
item.addItem(f.name(), f)
else:

0 comments on commit 84950f5

Please sign in to comment.