about summary refs log tree commit diff
path: root/src/ui/history_box.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/history_box.rs')
-rw-r--r--src/ui/history_box.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ui/history_box.rs b/src/ui/history_box.rs
index 8590bd0..28ae699 100644
--- a/src/ui/history_box.rs
+++ b/src/ui/history_box.rs
@@ -133,6 +133,16 @@ impl FurHistoryBox {
         }
     }
 
+    pub fn set_todays_time(&self, added_time: i32) {
+        let imp = imp::FurHistoryBox::from_obj(self);
+        imp.tasks_page.add_to_todays_time(added_time);
+    }
+
+    pub fn set_todays_stored_secs(&self, new_time: i32) {
+        let imp = imp::FurHistoryBox::from_obj(self);
+        imp.tasks_page.set_todays_stored_secs(new_time)
+    }
+
     pub fn empty_view(&self) {
         self.set_view(View::Empty);
         let window = FurtheranceWindow::default();