From f46764fd5dbe40890f0a4f83c0186fb879521d62 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 22 Mar 2026 15:38:51 +1100 Subject: [PATCH] fix: Weather name shadowing --- modules/dashboard/Content.qml | 2 +- modules/dashboard/Dash.qml | 2 +- modules/dashboard/{Weather.qml => WeatherTab.qml} | 0 modules/dashboard/dash/{Weather.qml => SmallWeather.qml} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename modules/dashboard/{Weather.qml => WeatherTab.qml} (100%) rename modules/dashboard/dash/{Weather.qml => SmallWeather.qml} (100%) diff --git a/modules/dashboard/Content.qml b/modules/dashboard/Content.qml index 4a6d9e61..5b3bbbe6 100644 --- a/modules/dashboard/Content.qml +++ b/modules/dashboard/Content.qml @@ -188,7 +188,7 @@ Item { Component { id: weatherComponent - Weather {} + WeatherTab {} } Behavior on contentX { diff --git a/modules/dashboard/Dash.qml b/modules/dashboard/Dash.qml index 13073c14..c0657f58 100644 --- a/modules/dashboard/Dash.qml +++ b/modules/dashboard/Dash.qml @@ -40,7 +40,7 @@ GridLayout { radius: Appearance.rounding.large * 1.5 - Weather {} + SmallWeather {} } Rect { diff --git a/modules/dashboard/Weather.qml b/modules/dashboard/WeatherTab.qml similarity index 100% rename from modules/dashboard/Weather.qml rename to modules/dashboard/WeatherTab.qml diff --git a/modules/dashboard/dash/Weather.qml b/modules/dashboard/dash/SmallWeather.qml similarity index 100% rename from modules/dashboard/dash/Weather.qml rename to modules/dashboard/dash/SmallWeather.qml