diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-12 17:57:38 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-12 17:57:38 +1000 |
| commit | 8c35d87a9fc20318e9d3537c884022aed6fe827e (patch) | |
| tree | e230f6f178d2df05998689f1e4cf622cd7176456 /modules | |
| parent | notifs: show multiline summary on expand (diff) | |
| download | caelestia-shell-8c35d87a9fc20318e9d3537c884022aed6fe827e.tar.gz caelestia-shell-8c35d87a9fc20318e9d3537c884022aed6fe827e.tar.bz2 caelestia-shell-8c35d87a9fc20318e9d3537c884022aed6fe827e.zip | |
notifs: properly fix multiline summaries
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/notifications/Notification.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index d78b327..03b0311 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -240,6 +240,7 @@ StyledRect { animate: true text: summaryMetrics.elidedText maximumLineCount: 1 + height: implicitHeight states: State { name: "expanded" @@ -266,6 +267,10 @@ StyledRect { easing.bezierCurve: Appearance.anim.curves.standard } } + + Behavior on height { + Anim {} + } } TextMetrics { |