Utility/Events: Fix TextEntered event with tabs on Linux

This commit is contained in:
Lynix 2016-10-14 17:50:12 +02:00
parent 683b3c8961
commit 8c1b4527fd
1 changed files with 2 additions and 1 deletions

View File

@ -1081,7 +1081,8 @@ namespace Nz
return ' ';
case XK_BackSpace:
return '\b';
case XK_KP_Tab || XK_Tab:
case XK_Tab:
case XK_KP_Tab:
return '\t';
case XK_Linefeed:
return '\n';