Skip to content

Commit

Permalink
[processing] Use correct file filter for file output dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jul 7, 2017
1 parent 617e457 commit b500080
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/gui/ParameterGuiUtils.py
Expand Up @@ -71,4 +71,6 @@ def getFileFilter(param):
for i in range(len(exts)):
exts[i] = tr('{0} files (*.{1})', 'ParameterVector').format(exts[i].upper(), exts[i].lower())
return ';;'.join(exts)
elif param.type() == 'fileOut':
return param.fileFilter()
return ''

0 comments on commit b500080

Please sign in to comment.