diff --git a/ChangeLog b/ChangeLog index f9fa2229f..a0b584368 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ Deluge 1.0.3 (In Development) WebUI: * Fix White template for Opera + * Remove max connections per second from config dialog. Misc: * Deluge will now use a system libtorrent library if available. diff --git a/deluge/ui/webui/config_tabs_deluge.py b/deluge/ui/webui/config_tabs_deluge.py index ad5aca76a..fe523a6e5 100644 --- a/deluge/ui/webui/config_tabs_deluge.py +++ b/deluge/ui/webui/config_tabs_deluge.py @@ -105,7 +105,7 @@ class BandwithGlobal(config_forms.CfgForm): max_upload_slots_global = forms.DelugeInt(_("Maximum Upload Slots")) max_half_open_connections = forms.DelugeInt(_("Maximum Half-Open Connections")) - max_connections_per_second = forms.DelugeInt(_("Maximum Connection Attempts per Second")) + #max_connections_per_second = forms.DelugeInt(_("Maximum Connection Attempts per Second")) ignore_limits_on_local_network = forms.CheckBox("Ignore limits on local network")