mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Merge pull request #3010 from BruceChenQAQ/master
Update Crowdin GitHub Action version in build-and-release.yml
This commit is contained in:
commit
448e1ef6f5
2 changed files with 33 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue