summaryrefslogtreecommitdiff
path: root/modules/launcher
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-24 17:27:15 +0800
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-24 17:27:15 +0800
commit6d40032fe5c520fcedef1e1f173bb4030c5d87b0 (patch)
tree7cb5f16592e04f568b17b574de2b8d3cc99de9b9 /modules/launcher
parentdashboard: fix calendar size (diff)
downloadcaelestia-shell-6d40032fe5c520fcedef1e1f173bb4030c5d87b0.tar.gz
caelestia-shell-6d40032fe5c520fcedef1e1f173bb4030c5d87b0.tar.bz2
caelestia-shell-6d40032fe5c520fcedef1e1f173bb4030c5d87b0.zip
internal: use implicit size for wrappers
Diffstat (limited to 'modules/launcher')
-rw-r--r--modules/launcher/Wrapper.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml
index c997781..fb9bb06 100644
--- a/modules/launcher/Wrapper.qml
+++ b/modules/launcher/Wrapper.qml
@@ -9,14 +9,14 @@ Item {
visible: height > 0
implicitHeight: 0
- implicitWidth: content.width + BorderConfig.rounding * 2
+ implicitWidth: content.implicitWidth + BorderConfig.rounding * 2
states: State {
name: "visible"
when: root.visibilities.launcher
PropertyChanges {
- root.implicitHeight: content.height
+ root.implicitHeight: content.implicitHeight
}
}