Skip to content

Commit b34ee28

Browse files
committed
[processing] Fix refreshing alg list does not refresh toolbox
Fix #16455, #16463
1 parent ac84326 commit b34ee28

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/plugins/processing/gui/ProcessingToolbox.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ def openSettings(url):
8585

8686
self.fillTree()
8787

88+
# connect to existing providers
89+
for p in QgsApplication.processingRegistry().providers():
90+
p.algorithmsLoaded.connect(self.updateProvider)
91+
8892
QgsApplication.processingRegistry().providerRemoved.connect(self.removeProvider)
8993
QgsApplication.processingRegistry().providerAdded.connect(self.addProvider)
9094
settingsWatcher.settingsChanged.connect(self.fillTree)

0 commit comments

Comments
 (0)