diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-25 00:19:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-25 00:19:15 +1000 |
| commit | 9da75ed6266d9d12a6082548fc49a11e508a80d0 (patch) | |
| tree | b80137821dc51e840d26ab169f2bb857ecf1f03d | |
| parent | internal: add env for beat detector path (diff) | |
| download | caelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.tar.gz caelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.tar.bz2 caelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.zip | |
lock: fix space inputs
| -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; } |