summaryrefslogtreecommitdiff
path: root/Userland/Games/Snake
diff options
context:
space:
mode:
authordemostanis <demostanis@protonmail.com>2022-10-14 22:27:30 +0200
committerLinus Groh <mail@linusgroh.de>2022-10-25 10:21:18 +0100
commit34acae90c77036897a3e2726ed145e6b7524bb49 (patch)
treec43ce5cf222812a02cbbf10dec6d1bab8b03a091 /Userland/Games/Snake
parenteb8c2bde90729b98a0f2cb8cc322baf44f6e6085 (diff)
downloadserenity-34acae90c77036897a3e2726ed145e6b7524bb49.zip
Userland: Let applications make use of make_command_palette_action()
Diffstat (limited to 'Userland/Games/Snake')
-rw-r--r--Userland/Games/Snake/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Games/Snake/main.cpp b/Userland/Games/Snake/main.cpp
index 8822124561..8de7539645 100644
--- a/Userland/Games/Snake/main.cpp
+++ b/Userland/Games/Snake/main.cpp
@@ -58,6 +58,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/Snake.md"), "/bin/Help");
})));