Skip to content

Commit

Permalink
[processing] fixed #10792
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jul 4, 2014
1 parent c5340cd commit d8eee4e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -356,7 +356,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(self.resolveValueDescription(f), f)
else:
Expand Down

0 comments on commit d8eee4e

Please sign in to comment.