From 9da75ed6266d9d12a6082548fc49a11e508a80d0 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 25 Jun 2025 00:19:15 +1000 Subject: lock: fix space inputs --- modules/lock/Input.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') 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; } -- cgit v1.2.3-freya