From ecf6c842900babd00b6a8d36e0efe6c0222ad93d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 13 May 2026 01:34:23 +1000 Subject: [PATCH] fix: improve notif expand btn --- modules/notifications/Notification.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index da2b14c4..5a10b8e7 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -352,6 +352,7 @@ StyledRect { anchors.right: parent.right anchors.top: parent.top + anchors.topMargin: -Tokens.padding.extraSmall implicitWidth: expandIcon.implicitHeight implicitHeight: expandIcon.implicitHeight @@ -366,10 +367,15 @@ StyledRect { id: expandIcon anchors.centerIn: parent + anchors.verticalCenterOffset: root.expanded ? -1 : 1 text: "expand_more" fontStyle: Tokens.font.icon.medium rotation: root.expanded ? 180 : 0 + Behavior on anchors.verticalCenterOffset { + Anim {} + } + Behavior on rotation { Anim {} }