KeyHandler // Fix an issue with alphanumerical mode.
- This fix stops this mode from committing full-width punctuations.
This commit is contained in:
parent
9b4d34cf31
commit
3b14208c0e
|
@ -71,8 +71,8 @@ extension KeyHandler {
|
|||
// 但願能夠處理這種情況下所有可能的按鍵組合。
|
||||
stateCallback(InputState.Empty())
|
||||
|
||||
// 摁 Shift 的話,無須額外處理,因為直接就會敲出大寫字母。
|
||||
if input.isShiftHold {
|
||||
// 字母鍵摁 Shift 的話,無須額外處理,因為直接就會敲出大寫字母。
|
||||
if input.isUpperCaseASCIILetterKey {
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue