1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 21:17:44 +00:00

Chess+Help: Remove erroneous ampersand from app name

This is not applicable here, the alt shortcut is set elsewhere.
This commit is contained in:
Linus Groh 2021-05-07 20:32:49 +01:00
parent 834b6508d7
commit 83d980ab9e
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ int main(int argc, char** argv)
}
auto& help_menu = menubar->add_menu("&Help");
help_menu.add_action(GUI::CommonActions::make_about_action("&Chess", app_icon, window));
help_menu.add_action(GUI::CommonActions::make_about_action("Chess", app_icon, window));
window->set_menubar(move(menubar));