Browse Source

Add null check for TextInputMethodClient in OnSelectionChanged() method

pull/12415/head
3dfxuser 3 years ago
parent
commit
ec21caf7fe
  1. 5
      src/Android/Avalonia.Android/AndroidInputMethod.cs

5
src/Android/Avalonia.Android/AndroidInputMethod.cs

@ -113,6 +113,11 @@ namespace Avalonia.Android
private void OnSelectionChanged()
{
if (Client is null)
{
return;
}
var selection = Client.Selection;
_imm.UpdateSelection(_host, selection.Start, selection.End, selection.Start, selection.End);

Loading…
Cancel
Save