summaryrefslogtreecommitdiff
path: root/Userland/Games/2048
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/2048
parenteb8c2bde90729b98a0f2cb8cc322baf44f6e6085 (diff)
downloadserenity-34acae90c77036897a3e2726ed145e6b7524bb49.zip
Userland: Let applications make use of make_command_palette_action()
Diffstat (limited to 'Userland/Games/2048')
-rw-r--r--Userland/Games/2048/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Games/2048/main.cpp b/Userland/Games/2048/main.cpp
index db3c35b3e4..68f09fd4ec 100644
--- a/Userland/Games/2048/main.cpp
+++ b/Userland/Games/2048/main.cpp
@@ -203,6 +203,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/2048.md"), "/bin/Help");
})));