Skip to content

Commit aabbb30

Browse files
committed
[processing] Fix clearing destination doesn't actually reset to temporary output
Even though the UI makes it look like it did
1 parent ce2f773 commit aabbb30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/gui/DestinationSelectionPanel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ def __init__(self, parameter, alg, default_selection=False):
8888
self.leText.textEdited.connect(self.textChanged)
8989

9090
def textChanged(self):
91-
self.use_temporary = False
91+
self.use_temporary = not self.leText.text()
9292
self.destinationChanged.emit()
9393

9494
def outputIsSkipped(self):
9595
"""
9696
Returns true if output is set to be skipped
97-
signal """
97+
"""
9898
return not self.leText.text() and not self.use_temporary
9999

100100
def skipOutput(self):

0 commit comments

Comments
 (0)