diff options
| -rw-r--r-- | modules/lock/Input.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lock/Input.qml b/modules/lock/Input.qml index 578ead0..c9c1431 100644 --- a/modules/lock/Input.qml +++ b/modules/lock/Input.qml @@ -98,7 +98,7 @@ ColumnLayout { } else { root.passwordBuffer = root.passwordBuffer.slice(0, -1); } - } else if ("abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) { + } else if (" abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) { charList.bindImWidth(); root.passwordBuffer += event.text; } |