1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

Userland+Base: Add "ladyball" logo for the system :^)

Thanks to Katalin Kult for the artwork!
This commit is contained in:
Andreas Kling 2021-04-25 18:45:43 +02:00
parent 2b78d90d04
commit 6c2ec4c1a4
5 changed files with 4 additions and 4 deletions

View file

@ -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();
}