From b6529349699235554b1e412a890dc853c5b2fa5e Mon Sep 17 00:00:00 2001 From: Martijn Voncken Date: Sat, 12 Jul 2008 10:27:29 +0000 Subject: [PATCH] fix queue config --- deluge/ui/webui/config_tabs_deluge.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/deluge/ui/webui/config_tabs_deluge.py b/deluge/ui/webui/config_tabs_deluge.py index 473b5318f..19988940d 100644 --- a/deluge/ui/webui/config_tabs_deluge.py +++ b/deluge/ui/webui/config_tabs_deluge.py @@ -140,16 +140,20 @@ class Queue(config_forms.CfgForm): info = _("-1 = unlimited") queue_new_to_top = forms.CheckBox(_("Queue new torrents to top")) - queue_finished_to_bottom = forms.CheckBox(_("Queue completed torrents to bottom")) + #total_downloading = forms.DelugeInt(_("Total active downloading")) - max_active_downloading = forms.DelugeInt(_("Total active torrents")) + max_active_limit = forms.DelugeInt(_("Total active torrents")) + max_active_downloading = forms.DelugeInt(_("Total active downloading")) max_active_seeding = forms.DelugeInt(_("Total active seeding")) + share_ratio_limit = forms.FloatField(min_value=-1) + seed_time_ratio_limit = forms.FloatField(min_value=-1) + seed_time_limit = forms.FloatField(min_value=-1) + stop_seed_at_ratio = forms.CheckBox(_("Stop seeding when ratio reaches")) #stop_ratio = forms.FloatField(min_value=-1) - remove_seed_at_ratio = forms.CheckBox(_("Remove torrent when ratio reached")) stop_seed_ratio = forms.FloatField(min_value=-1)