mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Properly unload Execute plugin when disabling it
This commit is contained in:
parent
2334fff388
commit
a528f78529
1 changed files with 3 additions and 3 deletions
|
@ -118,8 +118,8 @@ class GtkUI(GtkPluginBase):
|
|||
|
||||
def enable(self):
|
||||
self.plugin = component.get("PluginManager")
|
||||
self.prefences = ExecutePreferences(self.plugin)
|
||||
self.prefences.load()
|
||||
self.preferences = ExecutePreferences(self.plugin)
|
||||
self.preferences.load()
|
||||
|
||||
def disable(self):
|
||||
pass
|
||||
self.preferences.unload()
|
||||
|
|
Loading…
Add table
Reference in a new issue