Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-10-25 04:34:51 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-10-25 04:35:03 (GMT)
commit541f1b354d00916d83c86c134e19796b9e9f98bf (patch)
tree016bc0f9f9f2300730b35b86c9c475cbf6280836
parentd5801dadc90bcb3d8027a95a76bd0f77ee0e2af7 (diff)
Fix progressbar percent bug
Signed-off-by: Agustin Zubiaga <aguz@sugarlabs.org>
-rw-r--r--canvas.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/canvas.py b/canvas.py
index 1ad1335..0e44b6a 100644
--- a/canvas.py
+++ b/canvas.py
@@ -255,6 +255,8 @@ class DownloadList(gtk.TreeView):
if progress >= 150:
self._model[_id][1] = _("Installing...")
+ self._model[_id][2] = 100
+
if progress == 200:
self._model[_id][1] = _("Installed!")