update the deluge.config dictionary with the new values

This commit is contained in:
Damien Churchill 2010-04-28 14:20:31 +01:00
parent fd122db7b7
commit 698a5ff475
1 changed files with 4 additions and 0 deletions

View File

@ -191,6 +191,10 @@ Deluge.preferences.Interface = Ext.extend(Ext.form.FormPanel, {
success: this.onSetConfig,
scope: this
});
for (var key in deluge.config) {
deluge.config[key] = this.optionsManager.get(key);
}
}
},