diff options
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); } |