mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-10 10:28:39 +00:00
Fix #2120 : WebUI: Manually entered values not being saved in Spinners
This commit is contained in:
parent
dd8dac0574
commit
0676d7e2dc
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
/*!
|
/*!
|
||||||
* Ext.ux.form.SpinnerGroup.js
|
* Ext.ux.form.SpinnerGroup.js
|
||||||
*
|
*
|
||||||
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
@ -154,6 +154,7 @@ Ext.ux.form.SpinnerGroup = Ext.extend(Ext.form.CheckboxGroup, {
|
||||||
|
|
||||||
this.items.each(function(field) {
|
this.items.each(function(field) {
|
||||||
field.on('spin', this.onFieldChange, this);
|
field.on('spin', this.onFieldChange, this);
|
||||||
|
field.on('change', this.onFieldChange, this);
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
if (this.lazyValueSet) {
|
if (this.lazyValueSet) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue