mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
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:
parent
c2a249aa2b
commit
399889eca1
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ QtObject {
|
|||
}
|
||||
|
||||
property var graceLockTimer: Timer {
|
||||
interval: 1000
|
||||
interval: 3000
|
||||
onTriggered: {
|
||||
root.waitingForAuth = false;
|
||||
root.password = "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue