1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-14 01:32:29 -04:00

lock: handle case where session lock is rejected

This commit is contained in:
bbedward
2026-01-09 09:46:39 -05:00
parent af0166a553
commit 0f09cc693a
4 changed files with 102 additions and 40 deletions

View File

@@ -32,8 +32,10 @@ Rectangle {
}
onIsLockedChanged: {
if (!isLocked) {
lockContent.unlocking = false;
if (isLocked) {
lockContent.resetLockState();
return;
}
lockContent.unlocking = false;
}
}