disable all the textfields that should have accompanying checkboxes

This commit is contained in:
Damien Churchill 2009-07-30 23:49:05 +00:00
parent b8b292c7fb
commit 1429b87da7

View File

@ -17,24 +17,32 @@
xtype: 'fieldset', xtype: 'fieldset',
border: false, border: false,
title: _('Folders'), title: _('Folders'),
labelWidth: 140, labelWidth: 150,
defaultType: 'textfield', defaultType: 'textfield',
autoHeight: true autoHeight: true
}); });
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: 160 width: 150
})); }));
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: 160 width: 150,
disabled: true
})); }));
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: 160 width: 150,
disabled: true
}));
optMan.bind('autoadd_location', fieldset.add({
name: 'autoadd_location',
fieldLabel: _('Auto add .torrent files from'),
width: 150,
disabled: true
})); }));
fieldset = this.add({ fieldset = this.add({