diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 21:04:17 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 21:04:17 +1000 |
| commit | 60254019c8b90fda1af8c263f5bc07fe1a6b1a92 (patch) | |
| tree | 1add5c1f7066e0dcf5257314c2f487c5afc30a86 /modules/notifications/Content.qml | |
| parent | launcher: fix interrupted transitions (diff) | |
| download | caelestia-shell-60254019c8b90fda1af8c263f5bc07fe1a6b1a92.tar.gz caelestia-shell-60254019c8b90fda1af8c263f5bc07fe1a6b1a92.tar.bz2 caelestia-shell-60254019c8b90fda1af8c263f5bc07fe1a6b1a92.zip | |
feat: expandable notifs
Diffstat (limited to 'modules/notifications/Content.qml')
| -rw-r--r-- | modules/notifications/Content.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 34d0bcb..122da00 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -31,7 +31,7 @@ Item { implicitHeight: { let height = (count - 1) * spacing; for (let i = 0; i < count; i++) - height += itemAtIndex(i).height; + height += itemAtIndex(i).nonAnimHeight; return Math.max(61, height); } |