From 23c949d4ecc9a1994363e97cb2486746e5ee48e2 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Mon, 12 Oct 2009 16:44:30 +0000 Subject: [PATCH] give names to both the radio buttons so they end up in a group (duh) --- 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 78b5e7b24..49e7583d9 100644 --- a/deluge/ui/web/js/Deluge.Preferences.Downloads.js +++ b/deluge/ui/web/js/Deluge.Preferences.Downloads.js @@ -96,8 +96,8 @@ Ext.deluge.preferences.Downloads = Ext.extend(Ext.FormPanel, { name: 'compact_allocation', labelSeparator: '', items: [ - {boxLabel: _('Compact') + ' ', inputValue: true}, - {boxLabel: _('Full'), inputValue: false} + {boxLabel: _('Compact') + ' ', inputValue: true, name: 'compact_allocation'}, + {boxLabel: _('Full'), inputValue: false, name: 'compact_allocation'} ] }));