From 3488a761b8a81577fe8dccf51ef9f2123ff8e3a3 Mon Sep 17 00:00:00 2001 From: Asmageddon Date: Mon, 28 May 2012 13:26:24 +0200 Subject: [PATCH] Changed default column settings to be friendlier to small terminals --- deluge/ui/console/modes/alltorrents.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/deluge/ui/console/modes/alltorrents.py b/deluge/ui/console/modes/alltorrents.py index 016a19ae2..620bf4651 100644 --- a/deluge/ui/console/modes/alltorrents.py +++ b/deluge/ui/console/modes/alltorrents.py @@ -136,13 +136,13 @@ class FILTER: DEFAULT_PREFS = { "show_queue":True, "show_size":True, - "show_state":True, + "show_state":False, "show_progress":True, - "show_seeders":True, - "show_peers":True, + "show_seeders":False, + "show_peers":False, "show_downspeed":True, "show_upspeed":True, - "show_eta":False, + "show_eta":True, "show_ratio":False, "show_avail":False, "show_added":False, @@ -151,16 +151,16 @@ DEFAULT_PREFS = { "show_downloaded":False, "show_uploaded":False, "show_owner":False, - "queue_width":5, + "queue_width":4, "name_width":-1, - "size_width":15, + "size_width":8, "state_width":13, - "progress_width":10, + "progress_width":7, "seeders_width":10, "peers_width":10, - "downspeed_width":15, - "upspeed_width":15, - "eta_width":10, + "downspeed_width":7, + "upspeed_width":7, + "eta_width":8, "ratio_width":10, "avail_width":10, "added_width":25,