Skip to content

Commit d157b6e

Browse files
committedMay 29, 2018
[processing] Fix destination folder param is not updated after
picking from the file dialog alone
1 parent 6c0a1da commit d157b6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ def selectDirectory(self):
286286
if dirName:
287287
self.leText.setText(QDir.toNativeSeparators(dirName))
288288
settings.setValue('/Processing/LastOutputPath', dirName)
289-
290-
self.skipOutputChanged.emit(False)
291-
self.destinationChanged.emit()
289+
self.use_temporary = False
290+
self.skipOutputChanged.emit(False)
291+
self.destinationChanged.emit()
292292

293293
def setValue(self, value):
294294
if not value:

0 commit comments

Comments
 (0)
Please sign in to comment.