Module: deluge Branch: master Commit: f0fe3c7879121ba6e2b40f9287118c21f7c40b7f
Author: Andrew Resch <[email protected]> Date: Sat Aug 21 12:28:26 2010 -0700 Add 'Owner' and 'Public' columns to the TorrentView --- deluge/ui/gtkui/torrentview.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 07bfa60..5f1e452 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -233,8 +233,9 @@ class TorrentView(listview.ListView, component.Component): self.add_texticon_column(_("Tracker"), status_field=["tracker_host", "tracker_host"], function=cell_data_trackericon) - 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 self.filter = None -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
