Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] do not search text in short help when filtering in toolbox
This should fix problems with slow and unresponsive filtering
  • Loading branch information
volaya committed Mar 18, 2016
1 parent a1243d5 commit 1fdd177
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions python/plugins/processing/gui/ProcessingToolbox.py
Expand Up @@ -133,8 +133,6 @@ def _filterItem(self, item, text):
hide = bool(text) and (text not in item.text(0).lower())
if isinstance(item, TreeAlgorithmItem):
hide = hide and (text not in item.alg.commandLineName())
if item.alg.shortHelp() is not None:
hide = hide and (text not in item.alg.shortHelp())
item.setHidden(hide)
return not hide
else:
Expand Down

0 comments on commit 1fdd177

Please sign in to comment.