summaryrefslogtreecommitdiffstats
path: root/module/gui
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2011-01-27 14:49:40 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2011-01-27 14:49:40 +0100
commitba84504faca42476cedeb717558b114f4084605b (patch)
tree47fc38486c75ab423d60ca5a305b31ee05a950e6 /module/gui
parentsome improvements (diff)
downloadpyload-ba84504faca42476cedeb717558b114f4084605b.tar.xz
progress update optimizations
Diffstat (limited to 'module/gui')
-rw-r--r--module/gui/Queue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/gui/Queue.py b/module/gui/Queue.py
index bcd254fb9..9751b652f 100644
--- a/module/gui/Queue.py
+++ b/module/gui/Queue.py
@@ -90,7 +90,7 @@ class QueueModel(CollectorModel):
child = pack.getChild(d["id"])
if child:
child.data["downloading"] = d
- child.data["progress"] = child.data["downloading"]["percent"]
+ #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)))
self.updateCount()