diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-25 18:45:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-25 18:57:10 +0200 |
commit | 6c2ec4c1a49ffdb400aaffd6458304938c1b1fac (patch) | |
tree | 948485c3ba1ff57e0b8566071a9a251979e87fa2 /Userland/Applications/About | |
parent | 2b78d90d046bdeefde35240ec407ce5b9df3e1cd (diff) | |
download | serenity-6c2ec4c1a49ffdb400aaffd6458304938c1b1fac.zip |
Userland+Base: Add "ladyball" logo for the system :^)
Thanks to Katalin Kult for the artwork!
Diffstat (limited to 'Userland/Applications/About')
-rw-r--r-- | Userland/Applications/About/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/About/main.cpp b/Userland/Applications/About/main.cpp index f999be3a76..18b2951218 100644 --- a/Userland/Applications/About/main.cpp +++ b/Userland/Applications/About/main.cpp @@ -32,7 +32,7 @@ int main(int argc, char** argv) unveil(nullptr, nullptr); - auto app_icon = GUI::Icon::default_icon("ladybug"); - GUI::AboutDialog::show("SerenityOS", nullptr, nullptr, app_icon.bitmap_for_size(32)); + auto app_icon = GUI::Icon::default_icon("ladyball"); + GUI::AboutDialog::show("SerenityOS", app_icon.bitmap_for_size(32), nullptr, app_icon.bitmap_for_size(16)); return app->exec(); } |