mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -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,7 +113,9 @@ class ProcessingToolbox(BASE, WIDGET):
|
||||
if text in alg.name:
|
||||
self.disabledWithMatchingAlgs.append(providerName)
|
||||
break
|
||||
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
|
||||
showTip = ProcessingConfig.getSetting(ProcessingConfig.SHOW_PROVIDERS_TOOLTIP)
|
||||
if showTip:
|
||||
self.txtDisabled.setVisible(bool(self.disabledWithMatchingAlgs))
|
||||
else:
|
||||
self.algorithmTree.collapseAll()
|
||||
self.algorithmTree.invisibleRootItem().child(0).setExpanded(True)
|
||||
|
Loading…
x
Reference in New Issue
Block a user