Add wallpaper tab

This commit is contained in:
Ly-sec 2025-08-05 22:17:47 +02:00
parent 69d84752f3
commit 61e852ed51
7 changed files with 1091 additions and 122 deletions

View file

@ -16,6 +16,16 @@ Rectangle {
property string errorString: ""
property bool isVisible: false
// Auto-refetch weather when city changes
Connections {
target: Settings.settings
function onWeatherCityChanged() {
if (isVisible && city !== "") {
fetchCityWeather()
}
}
}
Component.onCompleted: {
if (isVisible) {
fetchCityWeather()