Merge pull request #3010 from BruceChenQAQ/master

Update Crowdin GitHub Action version in build-and-release.yml
This commit is contained in:
BruceChen 2026-03-28 00:48:31 +08:00 committed by GitHub
commit 448e1ef6f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 33 additions and 9 deletions

View file

@ -511,6 +511,17 @@ namespace MinecraftClient.Tui
{
_commandInput.TextChanged += OnCommandTextChanged;
}
Dispatcher.UIThread.Post(() =>
{
var endKeyEvent = new KeyEventArgs
{
RoutedEvent = KeyDownEvent,
Key = Key.End,
Source = _commandInput,
};
_commandInput.RaiseEvent(endKeyEvent);
}, DispatcherPriority.Input);
}
#endregion