mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Added progress to list of required columns
This commit is contained in:
parent
da5140e615
commit
9c0c7b060c
1 changed files with 2 additions and 2 deletions
|
@ -353,8 +353,8 @@ class AllTorrents(BaseMode, component.Component):
|
|||
self.__status_fields = column.get_required_fields(self.__columns)
|
||||
|
||||
# we always need these, even if we're not displaying them
|
||||
for rf in ["state", "name", "queue"]:
|
||||
if not rf in self.__status_fields:
|
||||
for rf in ["state", "name", "queue", "progress"]:
|
||||
if rf not in self.__status_fields:
|
||||
self.__status_fields.append(rf)
|
||||
|
||||
# same with sort keys
|
||||
|
|
Loading…
Add table
Reference in a new issue