From beef65a4603cb96377ac532d576636bb444e730f Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 4 Jul 2023 01:35:39 -0400 Subject: [PATCH] other: remove the percentage sign for CPU usage in CPU widget (#1243) --- src/widgets/cpu_graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/cpu_graph.rs b/src/widgets/cpu_graph.rs index 23081f44..46ec1fc4 100644 --- a/src/widgets/cpu_graph.rs +++ b/src/widgets/cpu_graph.rs @@ -46,7 +46,7 @@ impl ColumnHeader for CpuWidgetColumn { fn text(&self) -> Cow<'static, str> { match self { CpuWidgetColumn::CPU => "CPU".into(), - CpuWidgetColumn::Use => "Use%".into(), + CpuWidgetColumn::Use => "Use".into(), } } }