mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-08 15:47:43 +00:00
update keyboard when input field restarts with change in force ascii flag
This commit is contained in:
parent
907c307c2b
commit
ea17006570
1 changed files with 2 additions and 1 deletions
|
@ -136,7 +136,8 @@ public final class InputAttributes {
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isSameInputType(final EditorInfo editorInfo) {
|
public boolean isSameInputType(final EditorInfo editorInfo) {
|
||||||
return editorInfo.inputType == mInputType;
|
return editorInfo.inputType == mInputType
|
||||||
|
&& (mEditorInfo.imeOptions & EditorInfo.IME_FLAG_FORCE_ASCII) == (editorInfo.imeOptions & EditorInfo.IME_FLAG_FORCE_ASCII);
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean hasNoMicrophoneKeyOption() {
|
private boolean hasNoMicrophoneKeyOption() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue