From ee11c40ad3b1ca93a8b9adae86c3654891e93fe6 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Mon, 11 Aug 2025 08:45:22 -0400 Subject: [PATCH] notification changed easing so it does not clip --- Modules/Notification/Notification.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 11bfa0f..324387a 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -120,7 +120,8 @@ PanelWindow { Behavior on scale { NumberAnimation { duration: Style.animationSlow - easing.type: Easing.OutBack + easing.type: Easing.OutExpo + //easing.type: Easing.OutBack looks better but notification get clipped on all sides } }