fix a bug in the MultiOptionsManager that didn't fire the right arguments in the initial event fire

This commit is contained in:
Damien Churchill 2010-10-24 23:42:29 +01:00
parent d2f41fe7e5
commit 0360cbe0b8
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
},