From 7fb483addec43dc40322fa24fff7896c47223b77 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Sun, 24 Oct 2010 23:42:29 +0100 Subject: [PATCH] fix a bug in the MultiOptionsManager that didn't fire the right arguments in the initial event fire --- deluge/ui/web/js/deluge-all/MultiOptionsManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } },