Skip to content

Commit 1fdd177

Browse files
committedMar 18, 2016
[processing] do not search text in short help when filtering in toolbox
This should fix problems with slow and unresponsive filtering
1 parent a1243d5 commit 1fdd177

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎python/plugins/processing/gui/ProcessingToolbox.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ def _filterItem(self, item, text):
133133
hide = bool(text) and (text not in item.text(0).lower())
134134
if isinstance(item, TreeAlgorithmItem):
135135
hide = hide and (text not in item.alg.commandLineName())
136-
if item.alg.shortHelp() is not None:
137-
hide = hide and (text not in item.alg.shortHelp())
138136
item.setHidden(hide)
139137
return not hide
140138
else:

0 commit comments

Comments
 (0)
Please sign in to comment.