Skip to content

Commit

Permalink
Maps: Add Application Icons
Browse files Browse the repository at this point in the history
Add 16px and 32px application icons for Maps
  • Loading branch information
cubiclove authored and gmta committed Sep 5, 2023
1 parent bc5b7ae commit 8eb10b1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file added Base/res/icons/16x16/app-maps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Base/res/icons/32x32/app-maps.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Userland/Applications/Maps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion Userland/Applications/Maps/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 8eb10b1

Please sign in to comment.