diff options
Diffstat (limited to 'modules/launcher/WallpaperItem.qml')
| -rw-r--r-- | modules/launcher/WallpaperItem.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/WallpaperItem.qml b/modules/launcher/WallpaperItem.qml index 22f8eda..fd8ce9d 100644 --- a/modules/launcher/WallpaperItem.qml +++ b/modules/launcher/WallpaperItem.qml @@ -9,7 +9,7 @@ StyledRect { id: root required property Wallpapers.Wallpaper modelData - required property Scope launcher + required property PersistentProperties visibilities scale: 0.5 opacity: 0 @@ -28,7 +28,7 @@ StyledRect { function onClicked(): void { Wallpapers.setWallpaper(root.modelData.path); - root.launcher.launcherVisible = false; + root.visibilities.launcher = false; } } |