summaryrefslogtreecommitdiff
path: root/modules/launcher/ContentList.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-12 18:04:44 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-09-12 18:04:44 +1000
commit302a82da2dda3f1b8f86649bd801697f9f3c2209 (patch)
tree1c8763acb83aa01102c9f7587f6a0e02890a6a00 /modules/launcher/ContentList.qml
parentosd: loader content (diff)
downloadcaelestia-shell-302a82da2dda3f1b8f86649bd801697f9f3c2209.tar.gz
caelestia-shell-302a82da2dda3f1b8f86649bd801697f9f3c2209.tar.bz2
caelestia-shell-302a82da2dda3f1b8f86649bd801697f9f3c2209.zip
launcher: loader content
Diffstat (limited to 'modules/launcher/ContentList.qml')
-rw-r--r--modules/launcher/ContentList.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml
index 41f6a6a..123acdc 100644
--- a/modules/launcher/ContentList.qml
+++ b/modules/launcher/ContentList.qml
@@ -11,7 +11,7 @@ import QtQuick.Controls
Item {
id: root
- required property var wrapper
+ required property var content
required property PersistentProperties visibilities
required property var panels
required property TextField search
@@ -77,7 +77,6 @@ Item {
id: appList
active: false
- asynchronous: true
anchors.left: parent.left
anchors.right: parent.right
@@ -92,7 +91,6 @@ Item {
id: wallpaperList
active: false
- asynchronous: true
anchors.top: parent.top
anchors.bottom: parent.bottom
@@ -102,7 +100,7 @@ Item {
search: root.search
visibilities: root.visibilities
panels: root.panels
- wrapper: root.wrapper
+ content: root.content
}
}