mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-19 19:14:55 +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
28ce7a70a0
commit
7fb483adde
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;
|
||||
|
||||
if (!this.isDirty(option)) {
|
||||
this.fireEvent('changed', this.currentId, option, value, oldValue);
|
||||
this.fireEvent('changed', option, value, oldValue);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue