From 642392366b0e5e9f77f80dbccef41d5ef0c5749a Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 24 Jul 2024 00:02:44 -0400 Subject: [PATCH] lockscreen: Use consistent keypad fade-in animation --- shell/contents/lockscreen/Keypad.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell/contents/lockscreen/Keypad.qml b/shell/contents/lockscreen/Keypad.qml index 0884281e..a77a0ab1 100644 --- a/shell/contents/lockscreen/Keypad.qml +++ b/shell/contents/lockscreen/Keypad.qml @@ -110,7 +110,10 @@ Item { opacity: enabled Behavior on opacity { - NumberAnimation { duration: 100 * index } + SequentialAnimation { + PauseAnimation { duration: 20 * index } + NumberAnimation { duration: 300 } + } } background: Rectangle {