mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
[processing] don't show tip when user uses search and tip was disabled (fix #14379)
This commit is contained in:
parent
a8590135b5
commit
605e0c43fe
@ -113,6 +113,8 @@ class ProcessingToolbox(BASE, WIDGET):
|
|||||||
if text in alg.name:
|
if text in alg.name:
|
||||||
self.disabledWithMatchingAlgs.append(providerName)
|
self.disabledWithMatchingAlgs.append(providerName)
|
||||||
break
|
break
|
||||||
|
showTip = ProcessingConfig.getSetting(ProcessingConfig.SHOW_PROVIDERS_TOOLTIP)
|
||||||
|
if showTip:
|
||||||
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
|
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
|
||||||
else:
|
else:
|
||||||
self.algorithmTree.collapseAll()
|
self.algorithmTree.collapseAll()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user