From 720c17258b2a29f83819b922f902074fcda592a2 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 11 Sep 2025 11:52:33 -0400 Subject: [PATCH] Weather: use the regular "sun" icon (unfilled) for better uniformity --- Commons/IconsSets/TablerIcons.qml | 2 +- Modules/SidePanel/Cards/WeatherCard.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Commons/IconsSets/TablerIcons.qml b/Commons/IconsSets/TablerIcons.qml index 478f9d1..fb783a8 100644 --- a/Commons/IconsSets/TablerIcons.qml +++ b/Commons/IconsSets/TablerIcons.qml @@ -84,7 +84,7 @@ Singleton { "volume-zero": "volume-3", "volume-low": "volume-2", "volume-high": "volume", - "weather-sun": "sun-filled", + "weather-sun": "sun", "weather-cloud": "cloud", "weather-cloud-haze": "cloud-fog", "weather-cloud-lightning": "cloud-bolt", diff --git a/Modules/SidePanel/Cards/WeatherCard.qml b/Modules/SidePanel/Cards/WeatherCard.qml index 34a8f2c..aba0b8c 100644 --- a/Modules/SidePanel/Cards/WeatherCard.qml +++ b/Modules/SidePanel/Cards/WeatherCard.qml @@ -79,7 +79,7 @@ NBox { RowLayout { visible: weatherReady Layout.fillWidth: true - Layout.alignment: Qt.AlignHCenter + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter spacing: Style.marginL * scaling Repeater { model: weatherReady ? LocationService.data.weather.daily.time : []