summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartijn Voncken <mvoncken@gmail.com>2008-11-22 13:58:45 +0000
committerMartijn Voncken <mvoncken@gmail.com>2008-11-22 13:58:45 +0000
commitbb4927d5138c4dec92753c124215d77efc54d549 (patch)
tree49ddfbb23df4481e7ddf9d0f04f601d351b63e2e
parent2f64f7432536496e8b3a0676b8fa9046ef2a1a8f (diff)
downloaddeluge-bb4927d5138c4dec92753c124215d77efc54d549.tar.gz
deluge-bb4927d5138c4dec92753c124215d77efc54d549.tar.bz2
deluge-bb4927d5138c4dec92753c124215d77efc54d549.zip
rate_limit_ip_overhead:fix
-rw-r--r--deluge/ui/webui/config_tabs_deluge.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/webui/config_tabs_deluge.py b/deluge/ui/webui/config_tabs_deluge.py
index aba317fdb..a991952b5 100644
--- a/deluge/ui/webui/config_tabs_deluge.py
+++ b/deluge/ui/webui/config_tabs_deluge.py
@@ -107,6 +107,7 @@ class BandwithGlobal(config_forms.CfgForm):
max_half_open_connections = forms.DelugeInt(_("Maximum Half-Open Connections"))
max_connections_per_second = forms.DelugeInt(_("Maximum Connection Attempts per Second"))
ignore_limits_on_local_network = forms.CheckBox("Ignore limits on local network")
+ rate_limit_ip_overhead = forms.CheckBox(_("Rate Limit IP Overhead"))
config_page.register('bandwidth','global', BandwithGlobal)
@@ -118,7 +119,6 @@ class BandwithTorrent(config_forms.CfgForm):
max_download_speed_per_torrent = forms.DelugeFloat(_("Maximum Download Speed (Kib/s)"))
max_upload_speed_per_torrent = forms.DelugeFloat(_("Maximum Upload Speed (Kib/s)"))
max_upload_slots_per_torrent = forms.DelugeInt(_("Maximum Upload Slots"))
- rate_limit_ip_overhead = forms.CheckBox(_("Rate Limit IP Overhead"))
config_page.register('bandwidth','torrent', BandwithTorrent)