diff --git a/deluge/ui/web/js/deluge-all/MultiOptionsManager.js b/deluge/ui/web/js/deluge-all/MultiOptionsManager.js index 79ff9166b..c7d099eef 100644 --- a/deluge/ui/web/js/deluge-all/MultiOptionsManager.js +++ b/deluge/ui/web/js/deluge-all/MultiOptionsManager.js @@ -203,11 +203,11 @@ Deluge.MultiOptionsManager = Ext.extend(Deluge.OptionsManager, { if (defaultValue == value) { if (this.isDirty(option)) delete this.changed[this.currentId][option]; - this.fireEvent('changed', this.currentId, option, value, oldValue); + this.fireEvent('changed', option, value, oldValue); return; } else { this.changed[this.currentId][option] = value; - this.fireEvent('changed', this.currentId, option, value, oldValue); + this.fireEvent('changed', option, value, oldValue); } } }