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

BrickGame: Add a menu option to disable the shadow drop hint

This commit is contained in:
Karol Baraniecki 2023-04-08 01:37:25 +02:00 committed by Jelle Raaijmakers
parent f3f14a7ef1
commit 439076df8a
3 changed files with 14 additions and 1 deletions

View file

@ -59,6 +59,11 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
TRY(game_menu->try_add_action(GUI::Action::create("Toggle &Pause", { Mod_None, Key_P }, [&](auto&) {
game->toggle_pause();
})));
auto show_shadow_piece_action = TRY(GUI::Action::try_create_checkable("&Show Shadow Piece", GUI::Shortcut {}, [&](auto& action) {
game->set_show_shadow_hint(action.is_checked());
}));
show_shadow_piece_action->set_checked(true);
TRY(game_menu->try_add_action(show_shadow_piece_action));
TRY(game_menu->try_add_separator());
TRY(game_menu->try_add_action(GUI::CommonActions::make_quit_action([](auto&) {
GUI::Application::the()->quit();