mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18: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)
|
if(!Handled)
|
||||||
m_Input.ProcessInput(Event);
|
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))
|
if((Event.m_Key != KEY_TAB) && (Event.m_Key != KEY_LSHIFT))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue