From a207e1010bac52fb35efae75178a46c0c65ad024 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 12 Aug 2009 00:19:33 +0000 Subject: [PATCH] increase the width of the spinners on the bandwidth page --- .../ui/web/js/Deluge.Preferences.Bandwidth.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/deluge/ui/web/js/Deluge.Preferences.Bandwidth.js b/deluge/ui/web/js/Deluge.Preferences.Bandwidth.js index 2444a4c4d..42218a057 100644 --- a/deluge/ui/web/js/Deluge.Preferences.Bandwidth.js +++ b/deluge/ui/web/js/Deluge.Preferences.Bandwidth.js @@ -26,37 +26,37 @@ Ext.deluge.preferences.Bandwidth = Ext.extend(Ext.form.FormPanel, { optMan.bind('max_connections_global', fieldset.add({ name: 'max_connections_global', fieldLabel: _('Maximum Connections'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_upload_slots_global', fieldset.add({ name: 'max_upload_slots_global', fieldLabel: _('Maximum Upload Slots'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_download_speed', fieldset.add({ name: 'max_download_speed', fieldLabel: _('Maximum Download Speed (KiB/s)'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_upload_speed', fieldset.add({ name: 'max_upload_speed', fieldLabel: _('Maximum Upload Speed (KiB/s)'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_half_open_connections', fieldset.add({ name: 'max_half_open_connections', fieldLabel: _('Maximum Half-Open Connections'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_connections_per_second', fieldset.add({ name: 'max_connections_per_second', fieldLabel: _('Maximum Connection Attempts per Second'), - width: 60, + width: 80, value: -1 })); @@ -92,25 +92,25 @@ Ext.deluge.preferences.Bandwidth = Ext.extend(Ext.form.FormPanel, { optMan.bind('max_connections_per_torrent', fieldset.add({ name: 'max_connections_per_torrent', fieldLabel: _('Maximum Connections'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_upload_slots_per_torrent', fieldset.add({ name: 'max_upload_slots_per_torrent', fieldLabel: _('Maximum Upload Slots'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_download_speed_per_torrent', fieldset.add({ name: 'max_download_speed_per_torrent', fieldLabel: _('Maximum Download Speed (KiB/s)'), - width: 60, + width: 80, value: -1 })); optMan.bind('max_upload_speed_per_torrent', fieldset.add({ name: 'max_upload_speed_per_torrent', fieldLabel: _('Maximum Upload Speed (KiB/s)'), - width: 60, + width: 80, value: -1 })); }