Remove IME_FLAG_FORCE_ASCII from password input IME flags
* java/org/gnu/emacs/EmacsView.java (onCreateInputConnection): Passwords might also be non-ASCII, and this flag apparently requests an IME limited to ASCII characters, rather than just capable of ASCII input.
This commit is contained in:
@@ -843,10 +843,7 @@ public final class EmacsView extends ViewGroup
|
||||
info.imeOptions |= EditorInfo.IME_ACTION_DONE;
|
||||
|
||||
if (mode == EmacsService.IC_MODE_PASSWORD)
|
||||
{
|
||||
info.imeOptions |= EditorInfo.IME_FLAG_FORCE_ASCII;
|
||||
info.inputType |= InputType.TYPE_TEXT_VARIATION_PASSWORD;
|
||||
}
|
||||
info.inputType |= InputType.TYPE_TEXT_VARIATION_PASSWORD;
|
||||
|
||||
/* Set the initial selection fields. */
|
||||
info.initialSelStart = selection[0];
|
||||
|
||||
Reference in New Issue
Block a user