summaryrefslogtreecommitdiff
path: root/Userland/Games/Chess/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/Chess/main.cpp')
-rw-r--r--Userland/Games/Chess/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Games/Chess/main.cpp b/Userland/Games/Chess/main.cpp
index d2ecb26b90..19a4005dd0 100644
--- a/Userland/Games/Chess/main.cpp
+++ b/Userland/Games/Chess/main.cpp
@@ -176,6 +176,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
}
auto help_menu = TRY(window->try_add_menu("&Help"));
+ TRY(help_menu->try_add_action(GUI::CommonActions::make_command_palette_action(window)));
TRY(help_menu->try_add_action(GUI::CommonActions::make_help_action([](auto&) {
Desktop::Launcher::open(URL::create_with_file_scheme("/usr/share/man/man6/Chess.md"), "/bin/Help");
})));