From ecf00de898d43611245a305fdc5ba26ff0ecc7ca Mon Sep 17 00:00:00 2001 From: Hannes Date: Sat, 29 Aug 2026 23:19:20 +0200 Subject: [PATCH] feat: add inline reply functionality to notification body --- modules/notification/NotificationBody.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/notification/NotificationBody.qml b/modules/notification/NotificationBody.qml index 827ee62..1a006d5 100644 --- a/modules/notification/NotificationBody.qml +++ b/modules/notification/NotificationBody.qml @@ -201,6 +201,7 @@ Rectangle { onClicked: { modelData.invoke() + // resident check is allready in .invoke() root.closeNotification(false) } } @@ -220,6 +221,7 @@ Rectangle { function sendReply(message) { notification.sendInlineReply(message) inlineReplyTextField.focus = false + // resident check is allready in .invoke() root.closeNotification(false) }