diff --git a/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml b/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml index 5b9284d..4ca36ab 100644 --- a/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml +++ b/modules/user/modules/quickshell/shell/notifications/FlickableNotification.qml @@ -181,8 +181,8 @@ Item { FrameAnimation { function dampingVelocity(currentVelocity, delta) { - const spring = 150.0; - const damping = 20.0; + const spring = 100.0; + const damping = 12.0; const springForce = spring * delta; const dampingForce = -damping * currentVelocity; return springForce + dampingForce;