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/Demos/Mandelbrot | |
parent | eb8c2bde90729b98a0f2cb8cc322baf44f6e6085 (diff) | |
download | serenity-34acae90c77036897a3e2726ed145e6b7524bb49.zip |
Userland: Let applications make use of make_command_palette_action()
Diffstat (limited to 'Userland/Demos/Mandelbrot')
-rw-r--r-- | Userland/Demos/Mandelbrot/Mandelbrot.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp index 53667bc76e..4f625377cb 100644 --- a/Userland/Demos/Mandelbrot/Mandelbrot.cpp +++ b/Userland/Demos/Mandelbrot/Mandelbrot.cpp @@ -473,6 +473,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(view_menu->try_add_action(zoom_out_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_about_action("Mandelbrot Demo", app_icon, window))); window->show(); |