From c979d871af03f5099fd0d99d9f085d344d141ac9 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 6 Feb 2026 17:35:50 +0100 Subject: [PATCH] Fix testEffects --- Modules/Cards/WeatherCard.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Cards/WeatherCard.qml b/Modules/Cards/WeatherCard.qml index 03e08603d..5662eee1b 100644 --- a/Modules/Cards/WeatherCard.qml +++ b/Modules/Cards/WeatherCard.qml @@ -16,7 +16,7 @@ NBox { readonly property bool weatherReady: Settings.data.location.weatherEnabled && (LocationService.data.weather !== null) // Test mode: set to "rain", "snow", "cloud" or "fog" - property string testEffects: "fog" + property string testEffects: "" // Weather condition detection readonly property int currentWeatherCode: weatherReady ? LocationService.data.weather.current_weather.weathercode : 0