Skip to content

Commit

Permalink
[processing] unregister actions when unloading (follow up f7e6fa6)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 27, 2016
1 parent c7204cc commit 554ca8d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions python/plugins/processing/ProcessingPlugin.py
Expand Up @@ -128,6 +128,11 @@ def unload(self):
if QDir(folder).exists():
shutil.rmtree(folder, True)

self.iface.unregisterMainWindowAction(self.toolboxAction)
self.iface.unregisterMainWindowAction(self.modelerAction)
self.iface.unregisterMainWindowAction(self.historyAction)
self.iface.unregisterMainWindowAction(self.configAction)
self.iface.unregisterMainWindowAction(self.resultsAction)
self.iface.unregisterMainWindowAction(self.commanderAction)

def openCommander(self):
Expand Down

0 comments on commit 554ca8d

Please sign in to comment.