From f08f9750325246211c41a744eec288f1b3e28df6 Mon Sep 17 00:00:00 2001 From: Olivier Keshavjee Date: Mon, 15 Jun 2015 22:26:23 +0200 Subject: [PATCH] Bug corrected: goal percentage do not display correctly for folders with set goals --- src/models/outlineModel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/outlineModel.py b/src/models/outlineModel.py index d5081bd0..d99952f7 100644 --- a/src/models/outlineModel.py +++ b/src/models/outlineModel.py @@ -441,6 +441,7 @@ class outlineItem(): if setGoal: if goal != setGoal: self._data[Outline.goal] = setGoal + goal = setGoal else: goal = 0 for c in self.children():