From 2ec3ebf057846d8bb024f67dbc8ac867abe95c80 Mon Sep 17 00:00:00 2001 From: Damocles Date: Wed, 15 Apr 2026 20:55:36 +0200 Subject: [PATCH] fix: bar cpu label reads raw SystemStats values, not animated ones --- modules/Cpu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Cpu.qml b/modules/Cpu.qml index a91a0a7..a34c45e 100644 --- a/modules/Cpu.qml +++ b/modules/Cpu.qml @@ -79,7 +79,7 @@ M.BarSection { } } M.BarLabel { - label: root.usage.toString().padStart(2) + "%@" + root.freqGhz.toFixed(2) + label: M.SystemStats.cpuUsage.toString().padStart(2) + "%@" + M.SystemStats.cpuFreqGhz.toFixed(2) minText: "99%@9.99" anchors.verticalCenter: parent.verticalCenter TapHandler {