mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue