We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c3dfbcd commit ceb86c7Copy full SHA for ceb86c7
python/plugins/processing/gui/ProcessingToolbox.py
@@ -113,7 +113,9 @@ def textChanged(self):
113
if text in alg.name:
114
self.disabledWithMatchingAlgs.append(providerName)
115
break
116
- self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
+ showTip = ProcessingConfig.getSetting(ProcessingConfig.SHOW_PROVIDERS_TOOLTIP)
117
+ if showTip:
118
+ self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
119
else:
120
self.algorithmTree.collapseAll()
121
self.algorithmTree.invisibleRootItem().child(0).setExpanded(True)
0 commit comments