From 10feabc5a7f0bbb4f2edf0f0361848bfaf137e6d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 26 Apr 2026 01:40:55 +1000 Subject: [PATCH] fix: actually display temp in fahrenheit --- modules/dashboard/performance/HeroCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dashboard/performance/HeroCard.qml b/modules/dashboard/performance/HeroCard.qml index 9634516d..866c6c49 100644 --- a/modules/dashboard/performance/HeroCard.qml +++ b/modules/dashboard/performance/HeroCard.qml @@ -93,7 +93,7 @@ StyledRect { } StyledText { - text: Math.round(root.temperature) + (GlobalConfig.services.useFahrenheitPerformance ? "°F" : "°C") + text: `${Math.ceil(GlobalConfig.services.useFahrenheitPerformance ? root.temperature * 1.8 + 32 : root.temperature)}°${GlobalConfig.services.useFahrenheitPerformance ? "F" : "C"}` font: Tokens.font.body.builders.medium.build() } }