Skip to content

Commit ceb86c7

Browse files
committedMar 9, 2016
[processing] don't show tip when user uses search and tip was disabled (fix #14379)
1 parent c3dfbcd commit ceb86c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ def textChanged(self):
113113
if text in alg.name:
114114
self.disabledWithMatchingAlgs.append(providerName)
115115
break
116-
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
116+
showTip = ProcessingConfig.getSetting(ProcessingConfig.SHOW_PROVIDERS_TOOLTIP)
117+
if showTip:
118+
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
117119
else:
118120
self.algorithmTree.collapseAll()
119121
self.algorithmTree.invisibleRootItem().child(0).setExpanded(True)

0 commit comments

Comments
 (0)
Please sign in to comment.