mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-19 16:30:19 +00:00
add phantom space after characters usually followed by space
This commit is contained in:
parent
25d5510f18
commit
232c9892ae
1 changed files with 4 additions and 0 deletions
|
@ -998,6 +998,10 @@ public final class InputLogic {
|
|||
mSpaceState = SpaceState.PHANTOM;
|
||||
}
|
||||
|
||||
if (mSpaceState == SpaceState.NONE && wasComposingWord && settingsValues.isUsuallyFollowedBySpace(codePoint)) {
|
||||
mSpaceState = SpaceState.PHANTOM;
|
||||
}
|
||||
|
||||
sendKeyCodePoint(settingsValues, codePoint);
|
||||
|
||||
// Set punctuation right away. onUpdateSelection will fire but tests whether it is
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue