Skip to content

Commit

Permalink
As recommended switch to NewKeyDownEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
tznind committed Aug 10, 2024
1 parent 2c0e967 commit 769074e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UI/Windows/BigListBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private void ListView_KeyPress(object? sender, Key key)
if (key == Key.Backspace || char.IsLetterOrDigit(c))
{
this.searchBox?.FocusFirst(TabBehavior.TabStop);
this.searchBox?.OnProcessKeyDown(key);
this.searchBox?.NewKeyDownEvent(key);
key.Handled = true;
}
}
Expand Down

0 comments on commit 769074e

Please sign in to comment.