Skip to content

Commit

Permalink
[processing] Fix refreshing alg list does not refresh toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 1, 2017
1 parent ac84326 commit b34ee28
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/plugins/processing/gui/ProcessingToolbox.py
Expand Up @@ -85,6 +85,10 @@ def openSettings(url):

self.fillTree()

# connect to existing providers
for p in QgsApplication.processingRegistry().providers():
p.algorithmsLoaded.connect(self.updateProvider)

QgsApplication.processingRegistry().providerRemoved.connect(self.removeProvider)
QgsApplication.processingRegistry().providerAdded.connect(self.addProvider)
settingsWatcher.settingsChanged.connect(self.fillTree)
Expand Down

0 comments on commit b34ee28

Please sign in to comment.