diff options
author | demostanis <demostanis@protonmail.com> | 2022-10-14 22:27:30 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-25 10:21:18 +0100 |
commit | 34acae90c77036897a3e2726ed145e6b7524bb49 (patch) | |
tree | c43ce5cf222812a02cbbf10dec6d1bab8b03a091 /Userland/Games/MasterWord/main.cpp | |
parent | eb8c2bde90729b98a0f2cb8cc322baf44f6e6085 (diff) | |
download | serenity-34acae90c77036897a3e2726ed145e6b7524bb49.zip |
Userland: Let applications make use of make_command_palette_action()
Diffstat (limited to 'Userland/Games/MasterWord/main.cpp')
-rw-r--r-- | Userland/Games/MasterWord/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Games/MasterWord/main.cpp b/Userland/Games/MasterWord/main.cpp index 98fff9ab44..9f26e3344d 100644 --- a/Userland/Games/MasterWord/main.cpp +++ b/Userland/Games/MasterWord/main.cpp @@ -132,6 +132,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) theme_actions.add_action(wordle_theme_action); 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/MasterWord.md"), "/bin/Help"); }))); |