Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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.
Expand Up @@ -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:
Expand Down

0 comments on commit 84950f5

Please sign in to comment.