diff options
author | mkaay <mkaay@mkaay.de> | 2011-01-25 22:23:54 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-01-25 22:23:54 +0100 |
commit | 8fd49f65f2d7bd6afb1a449ebaa1d17aad84e671 (patch) | |
tree | 4502614456be35758865002215c6229d6f5956aa /module | |
parent | fixes DLC encoding issue (diff) | |
download | pyload-8fd49f65f2d7bd6afb1a449ebaa1d17aad84e671.tar.xz |
fixed gui progress issue
Diffstat (limited to 'module')
-rw-r--r-- | module/gui/Queue.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/module/gui/Queue.py b/module/gui/Queue.py index 7c5c59f15..aa1afbd3c 100644 --- a/module/gui/Queue.py +++ b/module/gui/Queue.py @@ -88,6 +88,7 @@ class QueueModel(CollectorModel): child = pack.getChild(d["id"]) if child: child.data["downloading"] = d + child.data["progress"] = child.data["downloading"]["percent"] k = pack.getChildKey(d["id"]) self.emit(SIGNAL("dataChanged(const QModelIndex &, const QModelIndex &)"), self.index(k, 0, self.index(p, 0)), self.index(k, self.cols, self.index(p, self.cols))) |