summaryrefslogtreecommitdiff
path: root/modules/launcher/AppItem.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/AppItem.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/AppItem.qml')
-rw-r--r--modules/launcher/AppItem.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/AppItem.qml b/modules/launcher/AppItem.qml
index 6335dd0..514185c 100644
--- a/modules/launcher/AppItem.qml
+++ b/modules/launcher/AppItem.qml
@@ -9,7 +9,7 @@ PaddedRect {
id: root
required property DesktopEntry modelData
- required property Scope launcher
+ required property PersistentProperties visibilities
implicitHeight: LauncherConfig.sizes.itemHeight
padding: [Appearance.padding.smaller, Appearance.padding.normal]
@@ -22,7 +22,7 @@ PaddedRect {
function onClicked(): void {
Apps.launch(root.modelData);
- root.launcher.launcherVisible = false;
+ root.visibilities.launcher = false;
}
}