From 82a4367aa9289e3ee112384937f7d417663e7df4 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 29 Jul 2009 08:19:45 +0000 Subject: [PATCH] use boolean values rather than string values for the radiobuttons --- deluge/ui/web/js/Deluge.Preferences.Downloads.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/web/js/Deluge.Preferences.Downloads.js b/deluge/ui/web/js/Deluge.Preferences.Downloads.js index ae5beb3c6..4d328bca1 100644 --- a/deluge/ui/web/js/Deluge.Preferences.Downloads.js +++ b/deluge/ui/web/js/Deluge.Preferences.Downloads.js @@ -49,8 +49,8 @@ name: 'compact_allocation', labelSeparator: '', items: [ - {boxLabel: _('Compact') + ' ', value: 'true'}, - {boxLabel: _('Full'), value: 'false'} + {boxLabel: _('Compact') + ' ', value: true}, + {boxLabel: _('Full'), value: false} ] }));