Commit 12d7edf0 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Always show completed items as green

parent 2f2f3573
......@@ -93,7 +93,9 @@ def progress_color(p_todo):
else:
return 0
if p_todo.is_overdue():
if p_todo.is_completed():
return 0
elif p_todo.is_overdue():
return 1.1
elif p_todo.due_date():
days_till_due = p_todo.days_till_due()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment