color.due.today and color.calendar.due.today

- tasks due on the current day ("today") can now be colorized with
  their own color.
- this is for reports and the calendar
This commit is contained in:
Federico Hernandez 2010-02-12 00:21:52 +01:00
parent adb72ef023
commit 4adfec4482
8 changed files with 131 additions and 29 deletions

View file

@ -144,7 +144,11 @@ void autoColorize (Task& task, Color& c)
c.blend (gsColor["color.due"]);
break;
case 2: // overdue
case 2: // today
c.blend (gsColor["color.due.today"]);
break;
case 3: // overdue
c.blend (gsColor["color.overdue"]);
break;