KeyHandler // Fix an issue with alphanumerical mode.

- This fix stops this mode from committing full-width punctuations.
This commit is contained in:
ShikiSuen 2022-08-30 16:51:45 +08:00
parent 9b4d34cf31
commit 3b14208c0e
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ extension KeyHandler {
//
stateCallback(InputState.Empty())
// Shift
if input.isShiftHold {
// Shift
if input.isUpperCaseASCIILetterKey {
return false
}