lock: fix space inputs
This commit is contained in:
parent
ad93617ee8
commit
9da75ed626
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ ColumnLayout {
|
||||||
} else {
|
} else {
|
||||||
root.passwordBuffer = root.passwordBuffer.slice(0, -1);
|
root.passwordBuffer = root.passwordBuffer.slice(0, -1);
|
||||||
}
|
}
|
||||||
} else if ("abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) {
|
} else if (" abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) {
|
||||||
charList.bindImWidth();
|
charList.bindImWidth();
|
||||||
root.passwordBuffer += event.text;
|
root.passwordBuffer += event.text;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue