Base+ImageViewer: Add new icons for ImageViewer

Add ImageViewer application icons (16 and 32px) and matching image
filetype icons.
This commit is contained in:
Cubic Love 2024-03-06 16:44:11 +00:00 committed by Sam Atkins
parent 580763e43e
commit 3bec616893
Notes: sideshowbarker 2024-07-18 03:20:18 +09:00
6 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 218 B

View File

@ -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)

View File

@ -57,7 +57,7 @@ ErrorOr<int> 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;