From d12217310366a21ffc135d81a8f9989aef17f630 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 13 May 2012 18:17:23 -0400 Subject: [PATCH] Bug - Fencepost error in colorization. --- src/rules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rules.cpp b/src/rules.cpp index 5b2493819..33b03ce63 100644 --- a/src/rules.cpp +++ b/src/rules.cpp @@ -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]); }