From 44774ee5fd65142c6c90c25787ac7cfd748146b6 Mon Sep 17 00:00:00 2001 From: Gabriel Bao Date: Wed, 20 May 2026 14:37:32 +0800 Subject: [PATCH] =?UTF-8?q?chore(welcome):=20=E4=BF=AE=E6=94=B9=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E6=97=B6=E5=B1=95=E7=A4=BA=E7=9A=84=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/welcome.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/welcome.rs b/src/components/welcome.rs index 51a0530..a0ad28f 100644 --- a/src/components/welcome.rs +++ b/src/components/welcome.rs @@ -304,7 +304,7 @@ impl Component for Welcome { let total_mb = self.total as f64 / 1024.0 / 1024.0; let speed_mb = self.speed / 1024.0 / 1024.0; - spans.push(Span::raw(format!(" {:.2} MB/{:.2} MB", mb, total_mb))); + spans.push(Span::raw(format!(" ({:.2} MB/{:.2} MB)", mb, total_mb))); spans.push(Span::raw(format!(" {:.2} MB/s", speed_mb))); } else { spans.push(Span::raw(format!(" {} / {}", self.downloaded, self.total)));