diff --git a/Base/res/icons/16x16/app-image-viewer.png b/Base/res/icons/16x16/app-image-viewer.png new file mode 100644 index 0000000000..48f24fbbee Binary files /dev/null and b/Base/res/icons/16x16/app-image-viewer.png differ diff --git a/Base/res/icons/16x16/filetype-image.png b/Base/res/icons/16x16/filetype-image.png index 701155ddf9..79f2a9fd22 100644 Binary files a/Base/res/icons/16x16/filetype-image.png and b/Base/res/icons/16x16/filetype-image.png differ diff --git a/Base/res/icons/32x32/app-image-viewer.png b/Base/res/icons/32x32/app-image-viewer.png new file mode 100644 index 0000000000..a19cfba061 Binary files /dev/null and b/Base/res/icons/32x32/app-image-viewer.png differ diff --git a/Base/res/icons/32x32/filetype-image.png b/Base/res/icons/32x32/filetype-image.png index d1ef7bc3e4..0c51e7916a 100644 Binary files a/Base/res/icons/32x32/filetype-image.png and b/Base/res/icons/32x32/filetype-image.png differ diff --git a/Userland/Applications/ImageViewer/CMakeLists.txt b/Userland/Applications/ImageViewer/CMakeLists.txt index 717a88c95e..66718d6ff1 100644 --- a/Userland/Applications/ImageViewer/CMakeLists.txt +++ b/Userland/Applications/ImageViewer/CMakeLists.txt @@ -11,5 +11,5 @@ set(SOURCES ViewWidget.cpp ) -serenity_app(ImageViewer ICON filetype-image) +serenity_app(ImageViewer ICON app-image-viewer) target_link_libraries(ImageViewer PRIVATE LibCore LibDesktop LibFileSystemAccessClient LibGUI LibGfx LibConfig LibImageDecoderClient LibMain) diff --git a/Userland/Applications/ImageViewer/main.cpp b/Userland/Applications/ImageViewer/main.cpp index 431ad565dc..f9789a2e96 100644 --- a/Userland/Applications/ImageViewer/main.cpp +++ b/Userland/Applications/ImageViewer/main.cpp @@ -57,7 +57,7 @@ ErrorOr serenity_main(Main::Arguments arguments) // TRY(Core::System::unveil("/res", "r")); // TRY(Core::System::unveil(nullptr, nullptr)); - auto app_icon = GUI::Icon::default_icon("filetype-image"sv); + auto app_icon = GUI::Icon::default_icon("app-image-viewer"sv); StringView path; Core::ArgsParser args_parser;