1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:27:35 +00:00

Everywhere: Add missing parent window to about dialogs

Partially addresses #5177.
This commit is contained in:
Linus Groh 2021-01-30 13:38:19 +01:00 committed by Andreas Kling
parent 1a2b693242
commit 6b7c96589b
4 changed files with 4 additions and 4 deletions

View file

@ -647,7 +647,7 @@ int run_in_windowed_mode(RefPtr<Core::ConfigFile> config, String initial_locatio
go_menu.add_action(go_to_location_action);
auto& help_menu = menubar->add_menu("Help");
help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("filetype-folder")));
help_menu.add_action(GUI::CommonActions::make_about_action("File Manager", GUI::Icon::default_icon("filetype-folder"), window));
GUI::Application::the()->set_menubar(move(menubar));