GRAPHICS: MACGUI: Do not pass event when ascii characters are pressed
This commit is contained in:
parent
da9e02cebb
commit
ebcff3a0aa
1 changed files with 2 additions and 0 deletions
|
@ -156,6 +156,8 @@ bool MacTextWindow::processEvent(Common::Event &event) {
|
|||
if (event.kbd.ascii >= 0x20 && event.kbd.ascii <= 0x7f) {
|
||||
_inputText += (char)event.kbd.ascii;
|
||||
drawInput();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue