From 7749f99828e9c2d1c58ba7eefe36460c907384b8 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Thu, 24 Sep 2009 16:42:36 +0000 Subject: [PATCH] change the labelAlign to top and icnrease the width of the fields --- deluge/ui/web/js/Deluge.Preferences.Downloads.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/deluge/ui/web/js/Deluge.Preferences.Downloads.js b/deluge/ui/web/js/Deluge.Preferences.Downloads.js index d4bffd587..170872204 100644 --- a/deluge/ui/web/js/Deluge.Preferences.Downloads.js +++ b/deluge/ui/web/js/Deluge.Preferences.Downloads.js @@ -53,29 +53,30 @@ Ext.deluge.preferences.Downloads = Ext.extend(Ext.FormPanel, { title: _('Folders'), labelWidth: 150, defaultType: 'textfield', - autoHeight: true + autoHeight: true, + labelAlign: 'top' }); optMan.bind('download_location', fieldset.add({ name: 'download_location', fieldLabel: _('Download to'), - width: 140 + width: 240 })); optMan.bind('move_completed_path', fieldset.add({ name: 'move_completed_path', fieldLabel: _('Move completed to'), - width: 140, + width: 240, disabled: true })); optMan.bind('torrentfiles_location', fieldset.add({ name: 'torrentfiles_location', fieldLabel: _('Copy of .torrent files to'), - width: 140, + width: 240, disabled: true })); optMan.bind('autoadd_location', fieldset.add({ name: 'autoadd_location', fieldLabel: _('Autoadd .torrent files from'), - width: 140, + width: 240, disabled: true }));