From b2e11137d418e6903bb7b55eaff9c72525113fa2 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Mon, 8 Sep 2025 20:11:26 -0400 Subject: [PATCH] Weather icon: fix thunderstorm --- Services/FontService.qml | 4 ++-- Services/LocationService.qml | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Services/FontService.qml b/Services/FontService.qml index 67a38b4..1d88816 100644 --- a/Services/FontService.qml +++ b/Services/FontService.qml @@ -18,9 +18,9 @@ Singleton { "partly_cloudy": "\uF2BE", "cloud": "\uF2C3", "foggy": "\uF2A7", - "rainy": "\uF29C", + "rainy": "\uF29D", "snowy": "\uF2BC", - "thunderstom": "\uF2AC", + "thunderstorm": "\uF2AC", "battery_empty": "\uF188", "battery_low": "\uF911", "battery_half": "\uF187", diff --git a/Services/LocationService.qml b/Services/LocationService.qml index 935ab04..8d5344d 100644 --- a/Services/LocationService.qml +++ b/Services/LocationService.qml @@ -242,8 +242,10 @@ Singleton { return FontService.icons["rainy"] if (code >= 71 && code <= 77) return FontService.icons["snowy"] - if (code >= 80 && code <= 82) - return FontService.icons["rainy"] + if (code >= 71 && code <= 77) + return FontService.icons["snowy"] + if (code >= 85 && code <= 86) + return FontService.icons["snowy"] if (code >= 95 && code <= 99) return FontService.icons["thunderstorm"] return FontService.icons["cloud"]