summaryrefslogtreecommitdiff
path: root/modules/notifications/Content.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-10 21:04:17 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-10 21:04:17 +1000
commit60254019c8b90fda1af8c263f5bc07fe1a6b1a92 (patch)
tree1add5c1f7066e0dcf5257314c2f487c5afc30a86 /modules/notifications/Content.qml
parentlauncher: fix interrupted transitions (diff)
downloadcaelestia-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.qml2
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);
}