mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug
- Fencepost error in colorization.
This commit is contained in:
parent
981121799c
commit
d122173103
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ static void colorizeScheduled (Task& task, const std::string& rule, Color& c)
|
||||||
{
|
{
|
||||||
if (gsColor[rule].nontrivial () &&
|
if (gsColor[rule].nontrivial () &&
|
||||||
task.has ("scheduled") &&
|
task.has ("scheduled") &&
|
||||||
Date (task.get_date ("scheduled")) < now)
|
Date (task.get_date ("scheduled")) <= now)
|
||||||
c.blend (gsColor[rule]);
|
c.blend (gsColor[rule]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue