increase the widths of the textfields and pass in inputValue rather than value to the radiogroup

This commit is contained in:
Damien Churchill 2009-07-29 08:58:28 +00:00
parent 5ec004b2ff
commit f031ec5628
1 changed files with 5 additions and 5 deletions

View File

@ -24,17 +24,17 @@
optMan.bind('download_location', fieldset.add({ optMan.bind('download_location', fieldset.add({
name: 'download_location', name: 'download_location',
fieldLabel: _('Download to'), fieldLabel: _('Download to'),
width: 125 width: 160
})); }));
optMan.bind('move_completed_path', fieldset.add({ optMan.bind('move_completed_path', fieldset.add({
name: 'move_completed_path', name: 'move_completed_path',
fieldLabel: _('Move completed to'), fieldLabel: _('Move completed to'),
width: 125 width: 160
})); }));
optMan.bind('torrentfiles_location', fieldset.add({ optMan.bind('torrentfiles_location', fieldset.add({
name: 'torrentfiles_location', name: 'torrentfiles_location',
fieldLabel: _('Copy of .torrent files to'), fieldLabel: _('Copy of .torrent files to'),
width: 125 width: 160
})); }));
fieldset = this.add({ fieldset = this.add({
@ -49,8 +49,8 @@
name: 'compact_allocation', name: 'compact_allocation',
labelSeparator: '', labelSeparator: '',
items: [ items: [
{boxLabel: _('Compact') + ' ', value: true}, {boxLabel: _('Compact') + ' ', inputValue: true},
{boxLabel: _('Full'), value: false} {boxLabel: _('Full'), inputValue: false}
] ]
})); }));