More indentation cleanup

This commit is contained in:
MrDowntempo
2025-10-11 02:38:46 -04:00
committed by GitHub
parent 4fb884a5c6
commit 357c30617d
+8 -8
View File
@@ -76,14 +76,14 @@ NPanel {
text: {
if (!weatherReady)
return ""
var temp = LocationService.data.weather.current_weather.temperature
var suffix = "C"
if (Settings.data.location.useFahrenheit) {
temp = LocationService.celsiusToFahrenheit(temp)
suffix = "F"
}
temp = Math.round(temp)
return `${temp}°${suffix}`
var temp = LocationService.data.weather.current_weather.temperature
var suffix = "C"
if (Settings.data.location.useFahrenheit) {
temp = LocationService.celsiusToFahrenheit(temp)
suffix = "F"
}
temp = Math.round(temp)
return `${temp}°${suffix}`
}
pointSize: Style.fontSizeM * scaling
font.weight: Style.fontWeightBold