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/Applications/3DFileViewer/main.cpp | |
parent | eb8c2bde90729b98a0f2cb8cc322baf44f6e6085 (diff) | |
download | serenity-34acae90c77036897a3e2726ed145e6b7524bb49.zip |
Userland: Let applications make use of make_command_palette_action()
Diffstat (limited to 'Userland/Applications/3DFileViewer/main.cpp')
-rw-r--r-- | Userland/Applications/3DFileViewer/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp index c11df834d3..147170eeb5 100644 --- a/Userland/Applications/3DFileViewer/main.cpp +++ b/Userland/Applications/3DFileViewer/main.cpp @@ -576,6 +576,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) texture_mag_filter_nearest_action->set_checked(true); auto& help_menu = window->add_menu("&Help"); + help_menu.add_action(GUI::CommonActions::make_command_palette_action(window)); help_menu.add_action(GUI::CommonActions::make_about_action("3D File Viewer", app_icon, window)); window->show(); |