From 545e4ef717fa60c037cc01ff12207a6a6581c2bd Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Tue, 27 Apr 2010 23:26:31 +0100 Subject: [PATCH] fix the change event on the spinner group --- deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js b/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js index 7703862d9..207ef695c 100644 --- a/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js +++ b/deluge/ui/web/js/ext-extensions/form/SpinnerGroup.js @@ -153,7 +153,7 @@ Ext.ux.form.SpinnerGroup = Ext.extend(Ext.form.CheckboxGroup, { this.items.addAll(fields); this.items.each(function(field) { - field.on('change', this.onFieldChange, this); + field.on('spin', this.onFieldChange, this); }, this); if (this.lazyValueSet) { @@ -172,7 +172,7 @@ Ext.ux.form.SpinnerGroup = Ext.extend(Ext.form.CheckboxGroup, { Ext.ux.form.SpinnerGroup.superclass.onRender.call(this, ct, position); }, - onFieldChange: function(spinner, value) { + onFieldChange: function(spinner) { this.fireEvent('change', this, this.getValue()); },