diff options
author | Linus Groh <mail@linusgroh.de> | 2021-01-30 13:38:19 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-30 13:42:39 +0100 |
commit | 6b7c96589b26b1cd6885d09555dc56e5b85e4412 (patch) | |
tree | 7c9c6e7134b33862183b2377182818d7c61cb4e6 /Userland/Applications/Calculator | |
parent | 1a2b6932422535999498371918e958667a973165 (diff) | |
download | serenity-6b7c96589b26b1cd6885d09555dc56e5b85e4412.zip |
Everywhere: Add missing parent window to about dialogs
Partially addresses #5177.
Diffstat (limited to 'Userland/Applications/Calculator')
-rw-r--r-- | Userland/Applications/Calculator/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Calculator/main.cpp b/Userland/Applications/Calculator/main.cpp index 82f8a1b28d..a2a10f1029 100644 --- a/Userland/Applications/Calculator/main.cpp +++ b/Userland/Applications/Calculator/main.cpp @@ -76,7 +76,7 @@ int main(int argc, char** argv) })); auto& help_menu = menubar->add_menu("Help"); - help_menu.add_action(GUI::CommonActions::make_about_action("Calculator", app_icon)); + help_menu.add_action(GUI::CommonActions::make_about_action("Calculator", app_icon, window)); app->set_menubar(move(menubar)); |