From 5385d8323ccbe7fa85693a00bfe81c6608178a27 Mon Sep 17 00:00:00 2001 From: Wang Yu Date: Tue, 6 Jan 2026 15:36:54 +0800 Subject: [PATCH] fix: clip ListView content to prevent overflow in NotifyView Added clip property to ListView to ensure notifications stay within visible bounds during Tab navigation. Log: clip ListView content to prevent overflow in NotifyView pms: BUG-345543 --- panels/notification/center/NotifyView.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/panels/notification/center/NotifyView.qml b/panels/notification/center/NotifyView.qml index 269870741..fda1a00c5 100644 --- a/panels/notification/center/NotifyView.qml +++ b/panels/notification/center/NotifyView.qml @@ -55,6 +55,7 @@ Control { contentItem: ListView { id: view + clip: true spacing: 10 snapMode: ListView.SnapToItem keyNavigationEnabled: false