Overview: potential fix for fallback wallpaper showing after logout/login

This commit is contained in:
Ly-sec
2025-10-02 17:06:30 +02:00
parent 20cbc03b22
commit 4b84e48e8e
+13
View File
@@ -21,6 +21,10 @@ Variants {
if (modelData) {
Logger.log("Overview", "Loading Overview component for Niri on", modelData.name)
}
updateWallpaper()
}
function updateWallpaper() {
wallpaper = modelData ? WallpaperService.getWallpaper(modelData.name) : ""
}
@@ -33,6 +37,15 @@ Variants {
}
}
}
Connections {
target: WallpaperService
function onIsInitializedChanged() {
if (WallpaperService.isInitialized) {
updateWallpaper()
}
}
}
color: Color.transparent
screen: modelData