lockscreen: Fix failed login attempt causing no more authentication

requests

For some reason at some point the kscreenlocker API rejects all
authentication requests if the grace lock (time after failed attempt ->
authenticator.startAuthentication) is shorter than 3 seconds, see
desktop: a71b5db277/desktoppackage/contents/lockscreen/LockScreenUi.qml (L181)

Update the grace lock interval to match desktop.
This commit is contained in:
Devin Lin 2026-01-18 22:39:16 -05:00
parent c2a249aa2b
commit 399889eca1

View file

@ -59,7 +59,7 @@ QtObject {
}
property var graceLockTimer: Timer {
interval: 1000
interval: 3000
onTriggered: {
root.waitingForAuth = false;
root.password = "";