MasterWord: Ignore unhandled keydown events

This makes Action shortcuts work again. :^)
This commit is contained in:
Sam Atkins 2022-12-14 15:45:15 +00:00 committed by Linus Groh
commit 4752d8fd08
Notes: sideshowbarker 2024-07-17 04:32:07 +09:00

View file

@ -113,6 +113,8 @@ void WordGame::keydown_event(GUI::KeyEvent& event)
reset(); reset();
} }
} }
} else {
event.ignore();
} }
update(); update();