1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:17:46 +00:00

BrickGame: Ignore unhandled keydown events

This makes Action shortcuts work again. :^)
This commit is contained in:
Sam Atkins 2022-12-14 15:41:31 +00:00 committed by Linus Groh
parent 0bf37b8763
commit 30833b0ba8

View file

@ -471,6 +471,7 @@ void BrickGame::keydown_event(GUI::KeyEvent& event)
render_request = m_brick_game->move_down_fast();
break;
default:
event.ignore();
break;
}
if (render_request == Bricks::RenderRequest::RequestUpdate)