mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-12 19:28:42 +00:00
Show seeding icon next to finished(with filtered files) torrents.
This commit is contained in:
parent
62c369bb6f
commit
e9605a8432
1 changed files with 2 additions and 1 deletions
|
@ -799,7 +799,8 @@ class DelugeGTK:
|
||||||
except ZeroDivisionError:
|
except ZeroDivisionError:
|
||||||
eta = 0
|
eta = 0
|
||||||
# Set the appropriate status icon
|
# 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']
|
status_icon = self.status_icons['seeding']
|
||||||
else:
|
else:
|
||||||
status_icon = self.status_icons['downloading']
|
status_icon = self.status_icons['downloading']
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue