mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +00:00
Add 'Owner' and 'Public' columns to the TorrentView
This commit is contained in:
parent
33fd852bda
commit
f0fe3c7879
1 changed files with 2 additions and 1 deletions
|
@ -233,8 +233,9 @@ class TorrentView(listview.ListView, component.Component):
|
||||||
self.add_texticon_column(_("Tracker"),
|
self.add_texticon_column(_("Tracker"),
|
||||||
status_field=["tracker_host", "tracker_host"],
|
status_field=["tracker_host", "tracker_host"],
|
||||||
function=cell_data_trackericon)
|
function=cell_data_trackericon)
|
||||||
|
|
||||||
self.add_text_column(_("Save Path"), status_field=["save_path"])
|
self.add_text_column(_("Save Path"), status_field=["save_path"])
|
||||||
|
self.add_text_column(_("Owner"), status_field=["owner"])
|
||||||
|
self.add_bool_column(_("Public"), status_field=["public"])
|
||||||
|
|
||||||
# Set filter to None for now
|
# Set filter to None for now
|
||||||
self.filter = None
|
self.filter = None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue