Skip to content

Commit

Permalink
[processing] fix file filter construction for output files
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Sep 8, 2017
1 parent 8770625 commit 1fb48f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ParameterGuiUtils.py
Expand Up @@ -77,7 +77,7 @@ def getFileFilter(param):
return QgsProviderRegistry.instance().fileVectorFilters()
elif param.type() == 'vector':
return QgsProviderRegistry.instance().fileVectorFilters()
elif param.type() == 'fileOut':
elif param.type() == 'fileDestination':
return tr('All files (*.*)') + ';;' + param.fileFilter()

return ''

0 comments on commit 1fb48f4

Please sign in to comment.