Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix shift key producing space in console (#5777)
* Fix shift key producing space in console
  • Loading branch information
davisonio authored and nerzhul committed May 20, 2017
1 parent 00972d4 commit 605599b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guiChatConsole.cpp
Expand Up @@ -628,7 +628,7 @@ bool GUIChatConsole::OnEvent(const SEvent& event)
prompt.nickCompletion(names, backwards);
return true;
}
else if(event.KeyInput.Char != 0 && !event.KeyInput.Control)
else if(isprint(event.KeyInput.Char) && !event.KeyInput.Control)
{
#if defined(__linux__) && (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 9)
wchar_t wc = L'_';
Expand Down

0 comments on commit 605599b

Please sign in to comment.