diff options
author | Ricky Kresslein <rk@lakoliu.com> | 2022-06-07 14:39:24 +0300 |
---|---|---|
committer | Ricky Kresslein <rk@lakoliu.com> | 2022-06-07 14:39:24 +0300 |
commit | af3f7b2473f1206f1a9ecb429084670cc4661923 (patch) | |
tree | 2bf5e95422d66d7295b5a099f689fddb88f30af5 /src/ui/window.rs | |
parent | 374bd69f6d5aa46ce9b4d7f4f2acb871b1d2426b (diff) | |
download | Furtherance-af3f7b2473f1206f1a9ecb429084670cc4661923.tar.zst |
Button to restart tasks
Diffstat (limited to 'src/ui/window.rs')
-rwxr-xr-x | src/ui/window.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/window.rs b/src/ui/window.rs index 5b7d647..992bc9f 100755 --- a/src/ui/window.rs +++ b/src/ui/window.rs @@ -752,7 +752,7 @@ impl FurtheranceWindow { } } - pub fn refresh_timer (&self) { + pub fn refresh_timer(&self) { let imp = imp::FurtheranceWindow::from_instance(self); if settings_manager::get_bool("pomodoro") { let mut mins = settings_manager::get_int("pomodoro-time"); @@ -778,3 +778,4 @@ impl Default for FurtheranceWindow { .unwrap() } } + |