From 4752d8fd08310b3255b00842fbf6421c750fc1dc Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 14 Dec 2022 15:45:15 +0000 Subject: [PATCH] MasterWord: Ignore unhandled keydown events This makes Action shortcuts work again. :^) --- Userland/Games/MasterWord/WordGame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Games/MasterWord/WordGame.cpp b/Userland/Games/MasterWord/WordGame.cpp index 398fa5307d2..755f59c1442 100644 --- a/Userland/Games/MasterWord/WordGame.cpp +++ b/Userland/Games/MasterWord/WordGame.cpp @@ -113,6 +113,8 @@ void WordGame::keydown_event(GUI::KeyEvent& event) reset(); } } + } else { + event.ignore(); } update();