Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[processing] fix file filter construction for output files
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
python/plugins/processing/gui/ParameterGuiUtils.py
|
@@ -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 '' |