summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Churchill <damoxc@gmail.com>2010-10-24 23:42:29 +0100
committerDamien Churchill <damoxc@gmail.com>2010-10-24 23:42:29 +0100
commit7fb483addec43dc40322fa24fff7896c47223b77 (patch)
treea7087ad472dfbe6fb924e06c47fc93b61ac0e77a
parent28ce7a70a00ed6b8dd0d7612810d75cc6c64bc71 (diff)
downloaddeluge-7fb483addec43dc40322fa24fff7896c47223b77.tar.gz
deluge-7fb483addec43dc40322fa24fff7896c47223b77.tar.bz2
deluge-7fb483addec43dc40322fa24fff7896c47223b77.zip
fix a bug in the MultiOptionsManager that didn't fire the right arguments in the initial event fire
-rw-r--r--deluge/ui/web/js/deluge-all/MultiOptionsManager.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/web/js/deluge-all/MultiOptionsManager.js b/deluge/ui/web/js/deluge-all/MultiOptionsManager.js
index c7d099eef..4d2a23c3f 100644
--- a/deluge/ui/web/js/deluge-all/MultiOptionsManager.js
+++ b/deluge/ui/web/js/deluge-all/MultiOptionsManager.js
@@ -174,7 +174,7 @@ Deluge.MultiOptionsManager = Ext.extend(Deluge.OptionsManager, {
this.stored[this.currentId][option] = value;
if (!this.isDirty(option)) {
- this.fireEvent('changed', this.currentId, option, value, oldValue);
+ this.fireEvent('changed', option, value, oldValue);
}
}
},