From 1e7e0e47445557cf133fb16ce6f3ffa89e296249 Mon Sep 17 00:00:00 2001 From: Rupert Rutledge Date: Sun, 26 Apr 2020 20:31:22 +0100 Subject: Add space to elapsed time to mirror other print The bandwidth print has a leading space, so this should have a trailing space. --- src/display/components/total_bandwidth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/display/components/total_bandwidth.rs b/src/display/components/total_bandwidth.rs index 095247b..0581330 100644 --- a/src/display/components/total_bandwidth.rs +++ b/src/display/components/total_bandwidth.rs @@ -53,7 +53,7 @@ impl<'a> HeaderDetails<'a> { fn render_elapsed_time(&self, frame: &mut Frame, rect: Rect) { let elapsed_time_text = [Text::styled( format!( - "Total Elapsed Time: {:02}:{:02}:{:02}", + "Total Elapsed Time: {:02}:{:02}:{:02} ", self.elapsed_time.as_secs() / 3600, (self.elapsed_time.as_secs() % 3600) / 60, self.elapsed_time.as_secs() % 60 -- cgit v1.2.3