From e9605a84325b2f1b3817ae3eb00afc2c0449a666 Mon Sep 17 00:00:00 2001 From: Alex Dedul Date: Tue, 14 Aug 2007 22:56:37 +0000 Subject: [PATCH] Show seeding icon next to finished(with filtered files) torrents. --- src/interface.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/interface.py b/src/interface.py index aee46fd95..48d7d6c67 100644 --- a/src/interface.py +++ b/src/interface.py @@ -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']