mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Add config option to change amount of torrents to list per tab press
This commit is contained in:
parent
68db1d4c13
commit
b1ce567819
3 changed files with 4 additions and 4 deletions
|
@ -172,7 +172,8 @@ DEFAULT_PREFS = {
|
|||
"owner_width":10,
|
||||
"ignore_duplicate_lines": False,
|
||||
"move_selection": True,
|
||||
"third_tab_lists_all": False
|
||||
"third_tab_lists_all": False,
|
||||
"torrents_per_tab_press": 15
|
||||
}
|
||||
|
||||
column_pref_names = ["queue","name","size","state",
|
||||
|
|
|
@ -57,8 +57,6 @@ import re
|
|||
LINES_BUFFER_SIZE = 5000
|
||||
INPUT_HISTORY_SIZE = 500
|
||||
|
||||
AUTOCOMPLETE_MAX_TORRENTS = 15
|
||||
|
||||
class Legacy(BaseMode):
|
||||
def __init__(self, stdscr, console_config, encoding=None):
|
||||
|
||||
|
@ -556,7 +554,7 @@ class Legacy(BaseMode):
|
|||
line = new_line
|
||||
cursor = len(line)
|
||||
elif hits >= 2:
|
||||
max_list = AUTOCOMPLETE_MAX_TORRENTS
|
||||
max_list = self.console_config["torrents_per_tab_press"]
|
||||
match_count = len(possible_matches)
|
||||
listed = (hits-2) * max_list
|
||||
pages = (match_count-1) // max_list + 1
|
||||
|
|
|
@ -314,6 +314,7 @@ class InterfacePane(BasePane):
|
|||
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("third_tab_lists_all","Third tab lists all remaining torrents in legacy mode",parent.console_config["third_tab_lists_all"])
|
||||
self.add_int_spin_input("torrents_per_tab_press","Torrents per tab press",parent.console_config["torrents_per_tab_press"], 5, 100)
|
||||
|
||||
self.add_header("Columns To Display", True)
|
||||
for cpn in deluge.ui.console.modes.alltorrents.column_pref_names:
|
||||
|
|
Loading…
Add table
Reference in a new issue