summaryrefslogtreecommitdiffstats
path: root/deluge/ui/gtk3/torrentview.py
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2018-09-20 20:47:46 +0100
committerCalum Lind <calumlind@gmail.com>2018-11-02 08:45:39 +0000
commitcf4012bb6016f612ee79eede1f8a7e7f8af74db0 (patch)
tree407b36f995947d449354fc0dfd9ee7ba7a22f16c /deluge/ui/gtk3/torrentview.py
parentbbcebe13060b8c32a8fd654e37110a0f9ea6f8a4 (diff)
downloaddeluge-cf4012bb6016f612ee79eede1f8a7e7f8af74db0.tar.gz
deluge-cf4012bb6016f612ee79eede1f8a7e7f8af74db0.tar.bz2
deluge-cf4012bb6016f612ee79eede1f8a7e7f8af74db0.zip
[GTK3] Fix and remove FIXME comments
- Several of the FIXME comments seem to be outdated so removed. - The status_icon comment was resolved by fixing the arguments supplied to tray_menu.popup(). - The TreePath no longer returns a tuple so cast path to int. - Fix an error with Pixbuf signature.
Diffstat (limited to 'deluge/ui/gtk3/torrentview.py')
-rw-r--r--deluge/ui/gtk3/torrentview.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/deluge/ui/gtk3/torrentview.py b/deluge/ui/gtk3/torrentview.py
index 97f406cc0..fad9526ba 100644
--- a/deluge/ui/gtk3/torrentview.py
+++ b/deluge/ui/gtk3/torrentview.py
@@ -662,7 +662,6 @@ class TorrentView(ListView, component.Component):
to_update = []
for i, status_field in fields_to_update:
row_value = status[torrent_id][status_field]
- # FIXME: Seeing UnicodeWarning??
if row[i] != row_value:
to_update.append(i)
to_update.append(row_value)