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

Maps: Add Application Icons

Add 16px and 32px application icons for Maps
This commit is contained in:
Cubic Love 2023-09-04 23:56:50 +01:00 committed by Jelle Raaijmakers
parent bc5b7aeffb
commit 8eb10b135d
4 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
auto app = TRY(GUI::Application::create(arguments));
auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-hello-world"sv)); // FIXME: Create Maps icon
auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-maps"sv));
auto window = TRY(GUI::Window::try_create());
window->set_title("Maps");
window->set_icon(app_icon.bitmap_for_size(16));