From ce2a8294b5aefe4497c88f24c817084868b8b1eb Mon Sep 17 00:00:00 2001 From: mkaay Date: Mon, 28 Dec 2009 15:32:06 +0100 Subject: gui now stable --- module/file_list.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'module/file_list.py') diff --git a/module/file_list.py b/module/file_list.py index d80310cdd..21e084483 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -127,8 +127,14 @@ class File_List(object): for thread_list only """ files = [] + for pypack in self.data["queue"] + self.data["packages"]: + for pyfile in pypack.files: + if pyfile.plugin.props['type'] == "container" and not pyfile.active: + files.append(pyfile) for pypack in self.data["queue"]: for pyfile in pypack.files: + if pyfile in files: + continue if (pyfile.status.type == "reconnected" or pyfile.status.type == None) and not pyfile.active: files.append(pyfile) return files -- cgit v1.2.3