Browse Source

Merge branch 'textInputMethodClientRework' of https://github.com/Gillibald/Avalonia into pr/11848

pull/11848/head
Emmanuel Hansen 3 years ago
parent
commit
492a24d731
  1. 4
      src/Avalonia.Controls/Presenters/TextPresenter.cs

4
src/Avalonia.Controls/Presenters/TextPresenter.cs

@ -853,7 +853,7 @@ namespace Avalonia.Controls.Presenters
{
if (!string.IsNullOrEmpty(PreeditText))
{
PreeditText = null;
SetCurrentValue(PreeditTextProperty, null);
}
}
@ -861,7 +861,7 @@ namespace Avalonia.Controls.Presenters
{
if (!string.IsNullOrEmpty(PreeditText))
{
PreeditText = null;
SetCurrentValue(PreeditTextProperty, null);
}
}

Loading…
Cancel
Save