stat formatting

This commit is contained in:
Benjamin Palko 2025-08-29 18:49:34 -04:00
parent 69923dbfa3
commit ce3ec5d37b
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ StyledButton {
when: root.showTemp when: root.showTemp
PropertyChanges { PropertyChanges {
text { text {
text: `${(SystemInfo.cpuTemp)}` text: ` ${SystemInfo.cpuTemp.toFixed().toString().padStart(2, "_")}`
} }
} }
} }

View file

@ -47,7 +47,7 @@ StyledButton {
when: root.showTemp when: root.showTemp
PropertyChanges { PropertyChanges {
text { text {
text: `${(SystemInfo.gpuTemp)}` text: ` ${SystemInfo.gpuTemp.toFixed().toString().padStart(2, "_")}`
} }
} }
} }