aboutsummaryrefslogtreecommitdiff
path: root/src/views.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-08-02 13:00:51 +0100
committerAkshay <[email protected]>2020-08-02 13:00:51 +0100
commit3cc2fafe84ec2c8f40a9348f9fe9a5408606db6e (patch)
tree7b5e05c85ce5c34766cc0e28bde7b931c698c6f7 /src/views.rs
parent83cba9dae6e4cc6a348ef0b9ee7e2c7f747409f5 (diff)
parent7f65b6960b300727bc16dedc39d5793d4ea83a0a (diff)
Merge branch 'load-config-json-app-config' of https://github.com/jjn2009/dijo into feature/config-file
Diffstat (limited to 'src/views.rs')
-rw-r--r--src/views.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views.rs b/src/views.rs
index da077ac..7adf8c6 100644
--- a/src/views.rs
+++ b/src/views.rs
@@ -36,9 +36,9 @@ where
36 let year = now.year(); 36 let year = now.year();
37 let month = now.month(); 37 let month = now.month();
38 38
39 let goal_reached_style = Style::from(CONFIGURATION.reached_color); 39 let goal_reached_style = Style::from(CONFIGURATION.reached_color());
40 let todo_style = Style::from(CONFIGURATION.todo_color); 40 let todo_style = Style::from(CONFIGURATION.todo_color());
41 let future_style = Style::from(CONFIGURATION.future_color); 41 let future_style = Style::from(CONFIGURATION.future_color());
42 42
43 let strikethrough = Style::from(Effect::Strikethrough); 43 let strikethrough = Style::from(Effect::Strikethrough);
44 44