From 74b2c302970ffe18dfa9c3b89a5fd9189120b154 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Fri, 7 Nov 2025 19:34:37 +0100 Subject: [PATCH] Notification: fix notification popup out of screen issue --- Modules/Notification/Notification.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 69ce1a65..a0dc4849 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -86,8 +86,8 @@ Variants { // Margins for PanelWindow (not anchors.topMargin!) margins.top: isTop ? Style.marginM + barOffset : 0 margins.bottom: isBottom ? Style.marginM + barOffset : 0 - margins.left: isLeft ? -Style.marginXL * 1.65 + barOffset : 0 - margins.right: isRight ? -Style.marginXL * 1.65 + barOffset : 0 + margins.left: isLeft ? Style.marginM + barOffset : 0 + margins.right: isRight ? Style.marginM + barOffset : 0 implicitWidth: notifWidth implicitHeight: notificationStack.implicitHeight + Style.marginL