Show seeding icon next to finished(with filtered files) torrents.

This commit is contained in:
Alex Dedul 2007-08-14 22:56:37 +00:00
parent 62c369bb6f
commit e9605a8432

View file

@ -799,7 +799,8 @@ class DelugeGTK:
except ZeroDivisionError:
eta = 0
# Set the appropriate status icon
if state["is_seed"]:
if state["is_seed"] or \
state["state"] == self.manager.constants["STATE_FINISHED"]:
status_icon = self.status_icons['seeding']
else:
status_icon = self.status_icons['downloading']