From 9c4b6afc05ccf61f33a96c762d199e3390f6b83c Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Thu, 30 Jul 2009 21:50:16 +0000 Subject: [PATCH] listen to the 'check' event on the field also incase it is a checkbox --- deluge/ui/web/js/Deluge.OptionsManager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/ui/web/js/Deluge.OptionsManager.js b/deluge/ui/web/js/Deluge.OptionsManager.js index 581bff27f..091042413 100644 --- a/deluge/ui/web/js/Deluge.OptionsManager.js +++ b/deluge/ui/web/js/Deluge.OptionsManager.js @@ -84,6 +84,7 @@ Deluge.OptionsManager = Ext.extend(Ext.util.Observable, { field.on('focus', this.onFieldFocus, this); field.on('blur', this.onFieldBlur, this); field.on('change', this.onFieldChange, this); + field.on('check', this.onFieldChange, this); }, /**