aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-07-01 11:29:41 +0100
committerAkshay <[email protected]>2020-07-01 11:29:41 +0100
commit82cad4b9b63175f62e9f091a3de20cd1f619c11b (patch)
treedeb64dfb3a551c378729079205ec67aa4e555874 /src
parentf96c3b4a68c60ec52b3e6a1097896780642f7245 (diff)
add completed markers
Diffstat (limited to 'src')
-rw-r--r--src/views.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/views.rs b/src/views.rs
index b18e960..77006b7 100644
--- a/src/views.rs
+++ b/src/views.rs
@@ -33,15 +33,22 @@ where
33 let todo_style = Style::from(CONFIGURATION.todo_color); 33 let todo_style = Style::from(CONFIGURATION.todo_color);
34 let future_style = Style::from(CONFIGURATION.future_color); 34 let future_style = Style::from(CONFIGURATION.future_color);
35 35
36 let goal_reached_today = self.reached_goal(Local::now().naive_utc().date());
37 if goal_reached_today {
38 printer.with_style(goal_reached_style, |p| p.print((0, 0), "o"));
39 } else {
40 printer.with_style(todo_style, |p| p.print((0, 0), "x"));
41 }
42
36 printer.with_style( 43 printer.with_style(
37 if !printer.focused { 44 if !printer.focused {
38 future_style 45 future_style
39 } else { 46 } else {
40 goal_reached_style 47 Style::none()
41 }, 48 },
42 |p| { 49 |p| {
43 p.print( 50 p.print(
44 (0, 0), 51 (2, 0),
45 &format!("{:width$}", self.name(), width = CONFIGURATION.view_width), 52 &format!("{:width$}", self.name(), width = CONFIGURATION.view_width),
46 ) 53 )
47 }, 54 },