Make 3rd+ tab list more/all of the remaining torrents and a preference to toggle these behaviors

This commit is contained in:
Asmageddon 2012-03-13 20:49:55 +01:00
parent 04ed96d121
commit a0a18e1036
3 changed files with 6 additions and 4 deletions

View File

@ -171,7 +171,8 @@ DEFAULT_PREFS = {
"uploaded_width":13, "uploaded_width":13,
"owner_width":10, "owner_width":10,
"ignore_duplicate_lines": False, "ignore_duplicate_lines": False,
"move_selection": True "move_selection": True,
"third_tab_lists_all": False
} }
column_pref_names = ["queue","name","size","state", column_pref_names = ["queue","name","size","state",

View File

@ -57,8 +57,7 @@ import re
LINES_BUFFER_SIZE = 5000 LINES_BUFFER_SIZE = 5000
INPUT_HISTORY_SIZE = 500 INPUT_HISTORY_SIZE = 500
AUTOCOMPLETE_MAX_TORRENTS = 20 AUTOCOMPLETE_MAX_TORRENTS = 15
AUTOCOMPLETE_MAX_TORRENTS_WITH_PATTERN = 10
class Legacy(BaseMode): class Legacy(BaseMode):
def __init__(self, stdscr, console_config, encoding=None): def __init__(self, stdscr, console_config, encoding=None):

View File

@ -313,7 +313,9 @@ class InterfacePane(BasePane):
self.add_header("General") self.add_header("General")
self.add_checked_input("ignore_duplicate_lines","Do not store duplicate input in history",parent.console_config["ignore_duplicate_lines"]) self.add_checked_input("ignore_duplicate_lines","Do not store duplicate input in history",parent.console_config["ignore_duplicate_lines"])
self.add_checked_input("move_selection","Move selection when moving torrents in the queue",parent.console_config["move_selection"]) self.add_checked_input("move_selection","Move selection when moving torrents in the queue",parent.console_config["move_selection"])
self.add_header("Columns To Display") self.add_checked_input("third_tab_lists_all","Third tab lists all remaining torrents in legacy mode",parent.console_config["third_tab_lists_all"])
self.add_header("Columns To Display", True)
for cpn in deluge.ui.console.modes.alltorrents.column_pref_names: for cpn in deluge.ui.console.modes.alltorrents.column_pref_names:
pn = "show_%s"%cpn pn = "show_%s"%cpn
self.add_checked_input(pn, self.add_checked_input(pn,