diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 18:45:07 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 18:45:07 +1000 |
| commit | 0bac8f983ab6fc2ff5b6a939ab77e8aa29b40b52 (patch) | |
| tree | 1ae0d19d7a7e3118312eb1868b959545b4261e1c /modules | |
| parent | notifs: actual list (diff) | |
| download | caelestia-shell-0bac8f983ab6fc2ff5b6a939ab77e8aa29b40b52.tar.gz caelestia-shell-0bac8f983ab6fc2ff5b6a939ab77e8aa29b40b52.tar.bz2 caelestia-shell-0bac8f983ab6fc2ff5b6a939ab77e8aa29b40b52.zip | |
notifs: fix first notif open anim
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/notifications/Content.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 7002dc5..a40ec65 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -14,7 +14,7 @@ Item { anchors.right: parent.right implicitWidth: NotifsConfig.sizes.width + root.padding * 2 - implicitHeight: list.height + root.padding * 2 + implicitHeight: Math.max(61, list.height) + root.padding * 2 ListView { id: list @@ -28,7 +28,6 @@ Item { anchors.right: parent.right anchors.margins: root.padding - clip: true implicitHeight: { let height = (count - 1) * spacing; for (let i = 0; i < count; i++) |