Skip to content

Commit

Permalink
Fixes improper IME composition ignorance (#14664)
Browse files Browse the repository at this point in the history
  • Loading branch information
gehongyan authored and maxkatz6 committed Feb 22, 2024
1 parent 998b7a8 commit 833af16
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Windows/Avalonia.Win32/Input/Imm32InputMethod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ public void Reset()
if (himc != IntPtr.Zero)
{
_ignoreComposition = true;
if (IsComposing)
{
_ignoreComposition = true;
}
if (_parent != null)
{
Expand Down

0 comments on commit 833af16

Please sign in to comment.