feat(lock): add fingerprint support (#2308)

This commit is contained in:
end-4
2025-10-30 09:05:49 +01:00
committed by GitHub
4 changed files with 68 additions and 1 deletions
@@ -28,7 +28,10 @@ Scope {
Connections {
target: GlobalStates
function onScreenLockedChanged() {
if (GlobalStates.screenLocked) lockContext.reset();
if (GlobalStates.screenLocked) {
lockContext.reset();
lockContext.tryFingerUnlock();
}
}
}