Browse Source

ensure caretRectChange events propogate

pull/8963/head
Dan Walmsley 4 years ago
parent
commit
ecc3c7e3b1
  1. 4
      src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

4
src/Avalonia.Controls/TextBoxTextInputMethodClient.cs

@ -144,10 +144,10 @@ namespace Avalonia.Controls
{
if (SupportsSurroundingText)
{
SurroundingTextChanged?.Invoke(sender, e);
SurroundingTextChanged?.Invoke(this, e);
}
CursorRectangleChanged?.Invoke(sender, e);
CursorRectangleChanged?.Invoke(this, e);
}, DispatcherPriority.Input);
}

Loading…
Cancel
Save