mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Fix console autocompletion (fixes #451)
This commit is contained in:
parent
28571e9cb5
commit
7e7bfcddd2
|
@ -222,7 +222,7 @@ void CGameConsole::CInstance::OnInput(IInput::CEvent Event)
|
|||
if(!Handled)
|
||||
m_Input.ProcessInput(Event);
|
||||
|
||||
if(Event.m_Flags&IInput::FLAG_PRESS)
|
||||
if(Event.m_Flags & (IInput::FLAG_PRESS|IInput::FLAG_TEXT))
|
||||
{
|
||||
if((Event.m_Key != KEY_TAB) && (Event.m_Key != KEY_LSHIFT))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue