- Fencepost error in colorization.
This commit is contained in:
Paul Beckingham 2012-05-13 18:17:23 -04:00
parent 981121799c
commit d122173103

View file

@ -145,7 +145,7 @@ static void colorizeScheduled (Task& task, const std::string& rule, Color& c)
{
if (gsColor[rule].nontrivial () &&
task.has ("scheduled") &&
Date (task.get_date ("scheduled")) < now)
Date (task.get_date ("scheduled")) <= now)
c.blend (gsColor[rule]);
}