lockscreen: show weather-cloud-off when weather data unavailable

This commit is contained in:
Turann_
2026-01-23 05:52:45 +03:00
parent ccb9a27930
commit d229677317
+1 -1
View File
@@ -323,7 +323,7 @@ Item {
NIcon {
Layout.alignment: Qt.AlignVCenter
icon: LocationService.weatherSymbolFromCode(LocationService.data.weather.current_weather.weathercode)
icon: weatherReady ? LocationService.weatherSymbolFromCode(LocationService.data.weather.current_weather.weathercode, LocationService.data.weather.current_weather.is_day) : "weather-cloud-off"
pointSize: Style.fontSizeXXXL
color: Color.mPrimary
}