Skip to content

Commit 1fb48f4

Browse files
committedSep 8, 2017
[processing] fix file filter construction for output files
1 parent 8770625 commit 1fb48f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/ParameterGuiUtils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def getFileFilter(param):
7777
return QgsProviderRegistry.instance().fileVectorFilters()
7878
elif param.type() == 'vector':
7979
return QgsProviderRegistry.instance().fileVectorFilters()
80-
elif param.type() == 'fileOut':
80+
elif param.type() == 'fileDestination':
8181
return tr('All files (*.*)') + ';;' + param.fileFilter()
8282

8383
return ''

0 commit comments

Comments
 (0)
Please sign in to comment.