diff --git a/Base/res/icons/16x16/app-maps.png b/Base/res/icons/16x16/app-maps.png new file mode 100644 index 00000000000..9bfa0ea2ece Binary files /dev/null and b/Base/res/icons/16x16/app-maps.png differ diff --git a/Base/res/icons/32x32/app-maps.png b/Base/res/icons/32x32/app-maps.png new file mode 100644 index 00000000000..859627c3b44 Binary files /dev/null and b/Base/res/icons/32x32/app-maps.png differ diff --git a/Userland/Applications/Maps/CMakeLists.txt b/Userland/Applications/Maps/CMakeLists.txt index d54f0cdc77f..a302797ee00 100644 --- a/Userland/Applications/Maps/CMakeLists.txt +++ b/Userland/Applications/Maps/CMakeLists.txt @@ -9,5 +9,5 @@ set(SOURCES MapWidget.cpp ) -serenity_app(Maps ICON app-hello-world) # FIXME: Create Maps icon +serenity_app(Maps ICON app-maps) target_link_libraries(Maps PRIVATE LibConfig LibCore LibDesktop LibGfx LibGUI LibMain LibProtocol) diff --git a/Userland/Applications/Maps/main.cpp b/Userland/Applications/Maps/main.cpp index dbda381666f..ba90c07e3bb 100644 --- a/Userland/Applications/Maps/main.cpp +++ b/Userland/Applications/Maps/main.cpp @@ -15,7 +15,7 @@ ErrorOr 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));