summaryrefslogtreecommitdiff
path: root/modules/launcher/WallpaperItem.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-13 23:12:23 +0800
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-13 23:12:23 +0800
commitf8eb1b69a034f4aa2833271a0c6b999cfe2a477e (patch)
tree012e14e3e6fbb890a7fbabc70e19e9f65d160400 /modules/launcher/WallpaperItem.qml
parentsession: show/hide on drag (diff)
downloadcaelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.tar.gz
caelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.tar.bz2
caelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.zip
launcher: move to drawers
Diffstat (limited to 'modules/launcher/WallpaperItem.qml')
-rw-r--r--modules/launcher/WallpaperItem.qml4
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;
}
}