Skip to content

Commit e091510

Browse files
committedJul 7, 2017
Fix folder destinations always default to temp folder (fix #16800)
1 parent 0802586 commit e091510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def getValue(self):
276276
return None
277277

278278
if isinstance(self.parameter, QgsProcessingParameterFolderOutput):
279-
return key
279+
return self.leText.text()
280280

281281
value = QgsProcessingOutputLayerDefinition(key)
282282
value.createOptions = {'fileEncoding': self.encoding}

0 commit comments

Comments
 (0)
Please sign in to comment.