1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 21:45:38 -05:00

fix lock screen multi-monitor input

This commit is contained in:
bbedward
2025-07-27 18:26:33 -04:00
parent 0290446c0c
commit 84036c57b6
2 changed files with 14 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ Item {
id: lock
property bool unlocked: false
property string sharedPasswordBuffer: ""
locked: true
@@ -30,6 +31,10 @@ Item {
LockSurface {
lock: lock
sharedPasswordBuffer: lock.sharedPasswordBuffer
onPasswordChanged: (newPassword) => {
lock.sharedPasswordBuffer = newPassword
}
}
}
}