mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
[processing] Fixes #11388 - save vector file dialog does not show file ext
This commit is contained in:
parent
7813f6b094
commit
659cada5b6
@ -253,7 +253,7 @@ class OutputVector(Output):
|
|||||||
def getFileFilter(self, alg):
|
def getFileFilter(self, alg):
|
||||||
exts = dataobjects.getSupportedOutputVectorLayerExtensions()
|
exts = dataobjects.getSupportedOutputVectorLayerExtensions()
|
||||||
for i in range(len(exts)):
|
for i in range(len(exts)):
|
||||||
self.tr('%s files(*.%s)', 'OutputVector') % (exts[i].upper(), exts[i].lower())
|
exts[i] = self.tr('%s files (*.%s)', 'OutputVector') % (exts[i].upper(), exts[i].lower())
|
||||||
return ';;'.join(exts)
|
return ';;'.join(exts)
|
||||||
|
|
||||||
def getDefaultFileExtension(self, alg):
|
def getDefaultFileExtension(self, alg):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user