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 00000000000..48f24fbbeec 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 701155ddf92..79f2a9fd22b 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 00000000000..a19cfba061a 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 d1ef7bc3e4d..0c51e7916a8 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 717a88c95ed..66718d6ff12 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 431ad565dc8..f9789a2e965 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;