From 2faaf49e32785805b8d66ba4a865c366e7de3d3b Mon Sep 17 00:00:00 2001 From: doghappy Date: Thu, 18 Nov 2021 18:25:04 +0800 Subject: [PATCH] cpu label for tooltip --- RunCat/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RunCat/Program.cs b/RunCat/Program.cs index 717f482a..83b10432 100644 --- a/RunCat/Program.cs +++ b/RunCat/Program.cs @@ -261,7 +261,7 @@ private void SetAnimation() private void CPUTick() { float s = cpuUsage.NextValue(); - notifyIcon.Text = $"{s:f1}%"; + notifyIcon.Text = $"CPU: {s:f1}%"; s = 200.0f / (float)Math.Max(1.0f, Math.Min(20.0f, s / 5.0f)); animateTimer.Stop(); animateTimer.Interval = (int)s;