fix a bug in the MultiOptionsManager that didn't fire the right arguments in the initial event fire
This commit is contained in:
parent
d2f41fe7e5
commit
0360cbe0b8
|
@ -174,7 +174,7 @@ Deluge.MultiOptionsManager = Ext.extend(Deluge.OptionsManager, {
|
||||||
this.stored[this.currentId][option] = value;
|
this.stored[this.currentId][option] = value;
|
||||||
|
|
||||||
if (!this.isDirty(option)) {
|
if (!this.isDirty(option)) {
|
||||||
this.fireEvent('changed', this.currentId, option, value, oldValue);
|
this.fireEvent('changed', option, value, oldValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue