mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-18 17:01:01 -08:00
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:
parent
48b6e6bd80
commit
5a7c46355b
1 changed files with 1 additions and 4 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue