diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 23:12:23 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-13 23:12:23 +0800 |
| commit | f8eb1b69a034f4aa2833271a0c6b999cfe2a477e (patch) | |
| tree | 012e14e3e6fbb890a7fbabc70e19e9f65d160400 /modules/launcher/ContentList.qml | |
| parent | session: show/hide on drag (diff) | |
| download | caelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.tar.gz caelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.tar.bz2 caelestia-shell-f8eb1b69a034f4aa2833271a0c6b999cfe2a477e.zip | |
launcher: move to drawers
Diffstat (limited to 'modules/launcher/ContentList.qml')
| -rw-r--r-- | modules/launcher/ContentList.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml index 3cd4f3e..b15daa6 100644 --- a/modules/launcher/ContentList.qml +++ b/modules/launcher/ContentList.qml @@ -10,7 +10,7 @@ import QtQuick.Controls Item { id: root - required property Scope launcher + required property PersistentProperties visibilities required property TextField search required property int padding required property int rounding @@ -101,7 +101,7 @@ Item { sourceComponent: AppList { padding: root.padding search: root.search - launcher: root.launcher + visibilities: root.visibilities } } @@ -117,7 +117,7 @@ Item { sourceComponent: WallpaperList { search: root.search - launcher: root.launcher + visibilities: root.visibilities } } |