Skip to content

Commit

Permalink
android: Fix inserting special characters in Non English Languages
Browse files Browse the repository at this point in the history
Signed-off-by: Mert Tumer <mert.tumer@collabora.com>
Change-Id: I7b0fd5e8a1abb5048cc0bd4dd4b7a6d794b446ea
  • Loading branch information
Mert Tumer authored and eszkadev committed Oct 26, 2021
1 parent 9186821 commit c6e67fd
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public COWebView(Context context, AttributeSet attrs, int defStyleAttr, int defS
* */
@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
return new BaseInputConnection(this, false);
// TODO FIXME
//return new BaseInputConnection(this, false);
// ^ caused a regression on inserting special characters like Non-English ones

return super.onCreateInputConnection(outAttrs);
}
}

0 comments on commit c6e67fd

Please sign in to comment.