From 7a7883d3594a2902ec4d2ef11cae4233f54f825f Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Thu, 16 Sep 2021 14:46:44 +0900 Subject: [PATCH] Minor fix/tweak to display timer output --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index 1ed7f65..2f0e370 100644 --- a/src/main.rs +++ b/src/main.rs @@ -418,6 +418,9 @@ fn seconds_to_time(seconds: f64) -> String { } else { result = String::new(); } + if new_seconds < 10.0 { + result.push('0'); + } result.push_str(&new_seconds.to_string()); let idx_result = result.find('.'); if let Some(idx) = idx_result {