summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Churchill <damoc@gmail.com>2009-12-10 14:32:55 +0000
committerDamien Churchill <damoc@gmail.com>2009-12-10 14:32:55 +0000
commite646a5ef879dce38a6bb1af4169171480c7d72e2 (patch)
treeac225a4813e9eddcdb4baf49ce1cc21a342ce876
parent3c703d2ef75d3a2666813cc73c94a51026b0a85b (diff)
downloaddeluge-e646a5ef879dce38a6bb1af4169171480c7d72e2.tar.gz
deluge-e646a5ef879dce38a6bb1af4169171480c7d72e2.tar.bz2
deluge-e646a5ef879dce38a6bb1af4169171480c7d72e2.zip
fix enabling plugins on the fly
-rw-r--r--ChangeLog1
-rw-r--r--deluge/ui/web/js/Deluge.Preferences.Plugins.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5933a6f8c..6ead3cf8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
* Add disk usage to the statusbar
* Add a ToggleField widget and use this on the Downloads preferences
page allowing the movecom/copytorrent/autoadd boxes to be enabled.
+ * Fix enabling plugins.
==== GtkUI ====
* Attempt to register as the default magnet uri handler in GNOME on startup
diff --git a/deluge/ui/web/js/Deluge.Preferences.Plugins.js b/deluge/ui/web/js/Deluge.Preferences.Plugins.js
index 8a7bff2ac..220bba3b7 100644
--- a/deluge/ui/web/js/Deluge.Preferences.Plugins.js
+++ b/deluge/ui/web/js/Deluge.Preferences.Plugins.js
@@ -142,7 +142,7 @@ Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
this.grid.on('cellclick', this.onCellClick, this);
Deluge.Preferences.on('show', this.onPreferencesShow, this);
Deluge.Events.on('PluginDisabledEvent', this.onPluginDisabled, this);
- Deluge.Events.on('PluginEnabledEvent', this.onPluginsEnabled, this);
+ Deluge.Events.on('PluginEnabledEvent', this.onPluginEnabled, this);
},
disablePlugin: function(plugin) {
@@ -242,4 +242,4 @@ Ext.deluge.preferences.Plugins = Ext.extend(Ext.Panel, {
this.setInfo();
}
});
-Deluge.Preferences.addPage(new Ext.deluge.preferences.Plugins()); \ No newline at end of file
+Deluge.Preferences.addPage(new Ext.deluge.preferences.Plugins());