You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have multiple milestones on one task, the group height increases with the total number of milestones, which makes it too tall. You only need to increase the height once per task with a milestone.
I hacked in this in group.py, which seems to fix the issue
milestone_count = 0
for task in self.tasks:
milestone_count += 1 #len(task.milestones) only need to increase height once per milestone
if len(task.milestones) == 0:
for parallel_task in task.tasks:
milestone_count += 1 #len(parallel_task.milestones)
break ### We only need to know whether there milestone exists in the parallel tasks
The text was updated successfully, but these errors were encountered:
If you have multiple milestones on one task, the group height increases with the total number of milestones, which makes it too tall. You only need to increase the height once per task with a milestone.
I hacked in this in group.py, which seems to fix the issue
milestone_count = 0
for task in self.tasks:
milestone_count += 1 #len(task.milestones) only need to increase height once per milestone
if len(task.milestones) == 0:
for parallel_task in task.tasks:
milestone_count += 1 #len(parallel_task.milestones)
break ### We only need to know whether there milestone exists in the parallel tasks
The text was updated successfully, but these errors were encountered: