From f031ec56283acca655a85c3ed4533d812a7ba19e Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 29 Jul 2009 08:58:28 +0000 Subject: [PATCH] increase the widths of the textfields and pass in inputValue rather than value to the radiogroup --- deluge/ui/web/js/Deluge.Preferences.Downloads.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deluge/ui/web/js/Deluge.Preferences.Downloads.js b/deluge/ui/web/js/Deluge.Preferences.Downloads.js index 4d328bca1..a1ddce6df 100644 --- a/deluge/ui/web/js/Deluge.Preferences.Downloads.js +++ b/deluge/ui/web/js/Deluge.Preferences.Downloads.js @@ -24,17 +24,17 @@ optMan.bind('download_location', fieldset.add({ name: 'download_location', fieldLabel: _('Download to'), - width: 125 + width: 160 })); optMan.bind('move_completed_path', fieldset.add({ name: 'move_completed_path', fieldLabel: _('Move completed to'), - width: 125 + width: 160 })); optMan.bind('torrentfiles_location', fieldset.add({ name: 'torrentfiles_location', fieldLabel: _('Copy of .torrent files to'), - width: 125 + width: 160 })); fieldset = this.add({ @@ -49,8 +49,8 @@ name: 'compact_allocation', labelSeparator: '', items: [ - {boxLabel: _('Compact') + ' ', value: true}, - {boxLabel: _('Full'), value: false} + {boxLabel: _('Compact') + ' ', inputValue: true}, + {boxLabel: _('Full'), inputValue: false} ] }));