diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 16:08:02 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-23 16:08:02 +1000 |
| commit | 66c0d0a15fd9e7ab3c42c3e0f30ead8d793b8352 (patch) | |
| tree | 93d40383a04dcff5b5b62103a944c1126fc9725c /modules/launcher/Content.qml | |
| parent | dashboard: better visualiser (diff) | |
| download | caelestia-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/Content.qml')
| -rw-r--r-- | modules/launcher/Content.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index 9b0e4e5..a8d8422 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -11,7 +11,10 @@ import QtQuick Item { id: root + required property var wrapper required property PersistentProperties visibilities + required property var panels + readonly property int padding: Appearance.padding.large readonly property int rounding: Appearance.rounding.large @@ -34,7 +37,9 @@ Item { ContentList { id: list + wrapper: root.wrapper visibilities: root.visibilities + panels: root.panels search: search padding: root.padding rounding: root.rounding |