From 4ca23da8e139deaf4615a39e7e7ffbd7fbd3ab61 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 24 May 2025 13:47:45 +0800 Subject: internal: fix null errors --- modules/launcher/WallpaperItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/launcher/WallpaperItem.qml') diff --git a/modules/launcher/WallpaperItem.qml b/modules/launcher/WallpaperItem.qml index fd8ce9d..dbd482e 100644 --- a/modules/launcher/WallpaperItem.qml +++ b/modules/launcher/WallpaperItem.qml @@ -13,7 +13,7 @@ StyledRect { scale: 0.5 opacity: 0 - z: PathView.z + z: PathView.z ?? 0 Component.onCompleted: { scale = Qt.binding(() => PathView.isCurrentItem ? 1 : PathView.onPath ? 0.8 : 0); -- cgit v1.2.3-freya