Skip to content

Commit

Permalink
Fix unwanted automatic fill of all algorithms when there is no input …
Browse files Browse the repository at this point in the history
…in the locator
  • Loading branch information
suricactus authored and nyalldawson committed Mar 28, 2020
1 parent 2856e7d commit 0a1d225
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/plugins/processing/gui/AlgorithmLocatorFilter.py
Expand Up @@ -83,6 +83,9 @@ def fetchResults(self, string, context, feedback):
if (context.usingPrefix and not string):
self.resultFetched.emit(result)

if not string:
return

string = string.lower()
tagScore = 0
tags = [*a.tags(), a.provider().name(), a.group()]
Expand Down

0 comments on commit 0a1d225

Please sign in to comment.