We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a40ed commit 9038872Copy full SHA for 9038872
python/plugins/processing/gui/DestinationSelectionPanel.py
@@ -231,7 +231,8 @@ def selectDirectory(self):
231
def getValue(self):
232
key = None
233
if not self.leText.text():
234
- key = 'memory:'
+ if isinstance(self.parameter, QgsProcessingParameterFeatureSink):
235
+ key = 'memory:'
236
else:
237
key = self.leText.text()
238
value = QgsProcessingOutputLayerDefinition(key)
0 commit comments