summaryrefslogtreecommitdiff
path: root/modules/notifications
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/notifications
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/notifications')
-rw-r--r--modules/notifications/Wrapper.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/notifications/Wrapper.qml b/modules/notifications/Wrapper.qml
index 1ad6092..42f3acb 100644
--- a/modules/notifications/Wrapper.qml
+++ b/modules/notifications/Wrapper.qml
@@ -9,14 +9,14 @@ Item {
visible: height > 0
implicitHeight: 0
- implicitWidth: content.width + BorderConfig.rounding
+ implicitWidth: content.implicitWidth + BorderConfig.rounding
states: State {
name: "visible"
when: root.visibility
PropertyChanges {
- root.implicitHeight: content.height
+ root.implicitHeight: content.implicitHeight
}
}