Skip to content

Commit

Permalink
[processing] Fix clearing destination doesn't actually reset to tempo…
Browse files Browse the repository at this point in the history
…rary output

Even though the UI makes it look like it did
  • Loading branch information
nyalldawson committed May 29, 2018
1 parent ce2f773 commit aabbb30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/DestinationSelectionPanel.py
Expand Up @@ -88,13 +88,13 @@ def __init__(self, parameter, alg, default_selection=False):
self.leText.textEdited.connect(self.textChanged)

def textChanged(self):
self.use_temporary = False
self.use_temporary = not self.leText.text()
self.destinationChanged.emit()

def outputIsSkipped(self):
"""
Returns true if output is set to be skipped
signal """
"""
return not self.leText.text() and not self.use_temporary

def skipOutput(self):
Expand Down

0 comments on commit aabbb30

Please sign in to comment.