From 54812a93a63323b58db4fc00d58f481fb35ae0d4 Mon Sep 17 00:00:00 2001 From: reionwong Date: Tue, 12 Oct 2021 08:26:08 +0800 Subject: [PATCH] Fix notification center --- notificationd/qml/NotificationWindow.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/notificationd/qml/NotificationWindow.qml b/notificationd/qml/NotificationWindow.qml index b405369..8bbddb7 100644 --- a/notificationd/qml/NotificationWindow.qml +++ b/notificationd/qml/NotificationWindow.qml @@ -127,11 +127,11 @@ Item { } addDisplaced: Transition { - NumberAnimation { properties: "x, y"; duration: 300 } + NumberAnimation { properties: "x, y"; duration: 250 } } removeDisplaced: Transition { - NumberAnimation { properties: "x, y"; duration: 300 } + NumberAnimation { properties: "x, y"; duration: 250 } } delegate: Item { @@ -151,6 +151,7 @@ Item { id: _itemMouseArea anchors.fill: parent hoverEnabled: true + z: 999 } RowLayout {