diff --git a/Modules/Notifications/Content.qml b/Modules/Notifications/Content.qml index 67b24fa..90447c9 100644 --- a/Modules/Notifications/Content.qml +++ b/Modules/Notifications/Content.qml @@ -10,7 +10,7 @@ Item { required property PersistentProperties visibilities required property Item panels - readonly property int padding: 8 + readonly property int padding: 6 anchors.top: parent.top anchors.bottom: parent.bottom @@ -48,7 +48,7 @@ Item { anchors.margins: root.padding color: "transparent" - radius: 8 + radius: 4 CustomListView { id: list @@ -123,7 +123,7 @@ Item { anchors.topMargin: wrapper.idx === 0 ? 0 : 8 color: "transparent" - radius: notif.radius + radius: 4 implicitWidth: notif.implicitWidth implicitHeight: notif.implicitHeight diff --git a/Modules/Notifications/Notification.qml b/Modules/Notifications/Notification.qml index d950dcb..fd94053 100644 --- a/Modules/Notifications/Notification.qml +++ b/Modules/Notifications/Notification.qml @@ -21,7 +21,7 @@ CustomRect { property bool expanded: Config.notifs.openExpanded color: root.modelData.urgency === NotificationUrgency.Critical ? DynamicColors.palette.m3secondaryContainer : DynamicColors.tPalette.m3surfaceContainer - radius: 8 + radius: 6 implicitWidth: Config.notifs.sizes.width implicitHeight: inner.implicitHeight @@ -125,6 +125,7 @@ CustomRect { anchors.fill: parent source: Qt.resolvedUrl(root.modelData.image) fillMode: Image.PreserveAspectCrop + mipmap: true cache: false asynchronous: true }