Module: deluge Branch: master Commit: 0360cbe0b80805cfd71e513e8a2f1bfcd8d6f949
Author: Damien Churchill <[email protected]> Date: Sun Oct 24 23:42:29 2010 +0100 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 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 c7d099e..4d2a23c 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); } } }, -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
