From fdee906e2401438603e377f4ae5bd9a6220b08c6 Mon Sep 17 00:00:00 2001 From: Sho Date: Sat, 1 Aug 2026 23:56:16 +0900 Subject: [PATCH] fix: change font.pixelSize in HamsterWidget.qml from float to int --- quickshell/modules/desktop/HamsterWidget.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/modules/desktop/HamsterWidget.qml b/quickshell/modules/desktop/HamsterWidget.qml index ac42954..5c26392 100644 --- a/quickshell/modules/desktop/HamsterWidget.qml +++ b/quickshell/modules/desktop/HamsterWidget.qml @@ -70,7 +70,7 @@ PanelWindow { Text { text: (60 + SystemMonitorService.cpuPct * 3) + " RPM • " + (SystemMonitorService.cpuPct > 70 ? "🔥 Sprinting" : (SystemMonitorService.cpuPct > 20 ? "⚡ Running" : "💤 Trotting")) color: Theme.comment - font.pixelSize: 9.5 + font.pixelSize: 10 Layout.alignment: Qt.AlignHCenter } }