summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2012-11-24 12:16:40 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2012-11-24 12:41:54 +0000
commit0571799a0721bd625b622a77c56bd94c3cd9af71 (patch)
tree64afab4a39ec345ea74b9cfbb5fd6c2393fed548
parentaaf4aa5226f0382bebbdd150aeee04ccafe23aa6 (diff)
downloaddeluge-0571799a07.tar.gz
deluge-0571799a07.tar.bz2
deluge-0571799a07.zip
Fix #2120 : WebUI: Manually entered values not being saved in Spinners
-rw-r--r--deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js b/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js
index 207ef695c..3308791cd 100644
--- a/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js
+++ b/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js
@@ -1,6 +1,6 @@
/*!
* Ext.ux.form.SpinnerGroup.js
- *
+ *
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
*
* 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) {
field.on('spin', this.onFieldChange, this);
+ field.on('change', this.onFieldChange, this);
}, this);
if (this.lazyValueSet) {