Custom Query (2447 matches)
Results (37 - 39 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2208 | Fixed | Open Folder not working after Complete download moved under Windows | ||
Description |
Deluge: 1.3.5 Operating System: Windows 7 64 bits with Service Pack 1 Steps involved to reproduce the bug: Select a folder for Incomplete downloads Select a folder for Completed downloads Right click an incomplete download and select Open Folder (it will open) Right click the same download after it's completed and select Open Folder (it won't open) |
|||
#1537 | Fixed | Editing trackers list, trackers have to be reselected | ||
Description |
Every time a tracker it's selected and its tier changed, it loses the selection and have to be reselected. it's incredibly annoying. |
|||
#1493 | Invalid | [PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view | ||
Description |
[PATCH] GTKUI: add "Downloaded" and "Uploaded" colums to torrent view ---
diff --git a/deluge/ui/gtkui/torrentview.py b/deluge/ui/gtkui/torrentview.py index 52590af..a12d474 100644 --- a/deluge/ui/gtkui/torrentview.py +++ b/deluge/ui/gtkui/torrentview.py @@ -211,6 +211,12 @@ def init(self):
+ self.add_func_column(_("Downloaded"), listview.cell_data_size, + [gobject.TYPE_UINT64], + status_field=all_time_download) + self.add_func_column(_("Uploaded"), listview.cell_data_size, + [gobject.TYPE_UINT64], + status_field=all_time_uploaded)
-- 1.7.3.5 |