From e2790b9fa2e5b98ba0cdc36a9dd9dbbd33dcae9a Mon Sep 17 00:00:00 2001 From: Elias Steurer Date: Mon, 4 Sep 2023 16:58:35 +0200 Subject: [PATCH] Fix Wallpaper not shown if using tiled background Thanks for BruhOP5 for reporting this issue! --- ScreenPlayWallpaper/qml/Wallpaper.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScreenPlayWallpaper/qml/Wallpaper.qml b/ScreenPlayWallpaper/qml/Wallpaper.qml index 62b727f7..b1420ad9 100644 --- a/ScreenPlayWallpaper/qml/Wallpaper.qml +++ b/ScreenPlayWallpaper/qml/Wallpaper.qml @@ -103,7 +103,7 @@ Rectangle { case 2: break; case 0: - if (desktopProperties.isTiled) { + if (Wallpaper.windowsDesktopProperties.isTiled) { // Tiled imgCover.fillMode = Image.Tile; } else {