From 41d5fa2b07aa73e2f6778833e4f982a39ccd8709 Mon Sep 17 00:00:00 2001 From: Cubic Love <7754483+cubiclove@users.noreply.github.com> Date: Thu, 28 Mar 2024 18:50:01 +0000 Subject: [PATCH] Base+ImageViewer: Restore correct app icon Restore ImageViewer's new application icon, which was accidentally changed back to using the filetype icon by e800605. Additionally, use the correct icon in the ImageViewer manpage. --- Base/usr/share/man/man1/Applications/ImageViewer.md | 3 +-- Userland/Applications/ImageViewer/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Base/usr/share/man/man1/Applications/ImageViewer.md b/Base/usr/share/man/man1/Applications/ImageViewer.md index f9ebf630b97..1b9fe87af0f 100644 --- a/Base/usr/share/man/man1/Applications/ImageViewer.md +++ b/Base/usr/share/man/man1/Applications/ImageViewer.md @@ -1,6 +1,6 @@ ## Name -![Icon](/res/icons/16x16/filetype-image.png) Image Viewer - SerenityOS image viewer +![Icon](/res/icons/16x16/app-image-viewer.png) Image Viewer - SerenityOS image viewer [Open](file:///bin/ImageViewer) @@ -29,4 +29,3 @@ ImageViewer is even smart enough to detect other images and display them when cl ```sh $ ImageViewer /res/graphics/buggie.png ``` - diff --git a/Userland/Applications/ImageViewer/CMakeLists.txt b/Userland/Applications/ImageViewer/CMakeLists.txt index 1d09b71fa9e..6795f92d989 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 LibURL)