mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
LibGUI+Applications: Use String in make_about_action()
This commit is contained in:
parent
e7a5a2e146
commit
ccab5ddf9b
53 changed files with 60 additions and 60 deletions
|
@ -279,7 +279,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
|
||||
auto help_menu = window->add_menu("&Help"_string);
|
||||
help_menu->add_action(GUI::CommonActions::make_command_palette_action(window));
|
||||
help_menu->add_action(GUI::CommonActions::make_about_action("Spider", app_icon, window));
|
||||
help_menu->add_action(GUI::CommonActions::make_about_action("Spider"_string, app_icon, window));
|
||||
|
||||
window->set_resizable(false);
|
||||
window->resize(Spider::Game::width, Spider::Game::height + statusbar.max_height().as_int());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue