summaryrefslogtreecommitdiff
path: root/modules/launcher/ContentList.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-23 16:08:02 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-23 16:08:02 +1000
commit66c0d0a15fd9e7ab3c42c3e0f30ead8d793b8352 (patch)
tree93d40383a04dcff5b5b62103a944c1126fc9725c /modules/launcher/ContentList.qml
parentdashboard: better visualiser (diff)
downloadcaelestia-shell-66c0d0a15fd9e7ab3c42c3e0f30ead8d793b8352.tar.gz
caelestia-shell-66c0d0a15fd9e7ab3c42c3e0f30ead8d793b8352.tar.bz2
caelestia-shell-66c0d0a15fd9e7ab3c42c3e0f30ead8d793b8352.zip
launcher: exact calculation for wallpaper width
Fixes #322
Diffstat (limited to 'modules/launcher/ContentList.qml')
-rw-r--r--modules/launcher/ContentList.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml
index e363c7b..d426d58 100644
--- a/modules/launcher/ContentList.qml
+++ b/modules/launcher/ContentList.qml
@@ -11,7 +11,9 @@ import QtQuick.Controls
Item {
id: root
+ required property var wrapper
required property PersistentProperties visibilities
+ required property var panels
required property TextField search
required property int padding
required property int rounding
@@ -103,6 +105,8 @@ Item {
sourceComponent: WallpaperList {
search: root.search
visibilities: root.visibilities
+ panels: root.panels
+ wrapper: root.wrapper
}
}