diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-12 18:09:42 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-12 18:09:42 +0100 |
commit | 91eda222087048fef131a1bc39bcda947bce2288 (patch) | |
tree | 0607a7dd78ae8e36600ef397bff639040161ee2b /Userland/DevTools/HackStudio | |
parent | f2154bca179e5242390e8b3230607360bdaa2949 (diff) | |
download | serenity-91eda222087048fef131a1bc39bcda947bce2288.zip |
Everywhere: Add Alt shortcuts to remaining top-level menus
Not sure why some menus did have one and others didn't, even in the
same application - now they all do. :^)
I added character shortcuts to some menu actions as well.
Diffstat (limited to 'Userland/DevTools/HackStudio')
-rw-r--r-- | Userland/DevTools/HackStudio/HackStudioWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/HackStudioWidget.cpp b/Userland/DevTools/HackStudio/HackStudioWidget.cpp index 07f7569940..d71c7cdae4 100644 --- a/Userland/DevTools/HackStudio/HackStudioWidget.cpp +++ b/Userland/DevTools/HackStudio/HackStudioWidget.cpp @@ -968,7 +968,7 @@ void HackStudioWidget::create_view_menubar(GUI::Menubar& menubar) void HackStudioWidget::create_help_menubar(GUI::Menubar& menubar) { - auto& help_menu = menubar.add_menu("Help"); + auto& help_menu = menubar.add_menu("&Help"); help_menu.add_action(GUI::CommonActions::make_about_action("Hack Studio", GUI::Icon::default_icon("app-hack-studio"), window())); } |