Skip to content

Commit

Permalink
[processing] Fix destination folder param is not updated after
Browse files Browse the repository at this point in the history
picking from the file dialog alone
  • Loading branch information
nyalldawson committed May 29, 2018
1 parent 6c0a1da commit d157b6e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/plugins/processing/gui/DestinationSelectionPanel.py
Expand Up @@ -286,9 +286,9 @@ def selectDirectory(self):
if dirName:
self.leText.setText(QDir.toNativeSeparators(dirName))
settings.setValue('/Processing/LastOutputPath', dirName)

self.skipOutputChanged.emit(False)
self.destinationChanged.emit()
self.use_temporary = False
self.skipOutputChanged.emit(False)
self.destinationChanged.emit()

def setValue(self, value):
if not value:
Expand Down

0 comments on commit d157b6e

Please sign in to comment.