Update submodule.

This commit is contained in:
Pieter-Jan Briers
2019-02-21 18:13:37 +01:00
parent 3516392f06
commit fd9db21ad7
3 changed files with 12 additions and 7 deletions

View File

@@ -153,7 +153,7 @@ namespace Content.Client.GameTicking
_lobby.ServerName.Text = _baseClient.GameInfo.ServerName;
_inputManager.SetInputCommand(EngineKeyFunctions.FocusChat,
InputCmdHandler.FromDelegate(session => { _lobby.Chat.Input.GrabFocus(); }));
InputCmdHandler.FromDelegate(session => { _lobby.Chat.Input.GrabKeyboardFocus(); }));
_updateLobbyUi();
@@ -200,7 +200,7 @@ namespace Content.Client.GameTicking
}
_inputManager.SetInputCommand(EngineKeyFunctions.FocusChat,
InputCmdHandler.FromDelegate(session => { _gameChat.Input.GrabFocus(); }));
InputCmdHandler.FromDelegate(session => { _gameChat.Input.GrabKeyboardFocus(); }));
_gameChat = new Chatbox();
_userInterfaceManager.StateRoot.AddChild(_gameChat);