From b0a0b6d322189fa6fe4a7389fa42cb8d5a6156ab Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 18 Jun 2025 23:26:49 +1000 Subject: notifs: fix material icon offset --- modules/notifications/Notification.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'modules') diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index 8a0e367..55f17a2 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -177,6 +177,8 @@ StyledRect { active: !root.hasAppIcon asynchronous: true anchors.centerIn: parent + anchors.horizontalCenterOffset: -Appearance.font.size.large * 0.02 + anchors.verticalCenterOffset: Appearance.font.size.large * 0.02 sourceComponent: MaterialIcon { text: { @@ -210,6 +212,9 @@ StyledRect { color: root.modelData.urgency === NotificationUrgency.Critical ? Colours.palette.m3onError : root.modelData.urgency === NotificationUrgency.Low ? Colours.palette.m3onSurface : Colours.palette.m3onTertiaryContainer font.pointSize: Appearance.font.size.large + font.variableAxes: ({ + opsz: Appearance.font.size.large + }) } } } -- cgit v1.2.3-freya