From 6b64c8a91804058fea99ed6944753758ee92c543 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 10 May 2025 17:31:04 +1000 Subject: feat: basic notifications Also fix pixel issue with notif area background Add more log rules to run script --- modules/notifications/Content.qml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'modules/notifications/Content.qml') diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml index 86cef8b..7fdd000 100644 --- a/modules/notifications/Content.qml +++ b/modules/notifications/Content.qml @@ -7,16 +7,18 @@ import QtQuick Column { id: root - // padding: Appearance.padding.large + padding: Appearance.padding.large anchors.bottom: parent.bottom anchors.right: parent.right spacing: Appearance.spacing.normal - StyledRect { - width: 300 - height: 100 - // color: Qt.rgba(255, 0, 0, 0.4) + Repeater { + model: ScriptModel { + values: [...Notifs.list] + } + + Notification {} } } -- cgit v1.2.3-freya