From a5cef2c41a75af1a9109dd8405510e5c608b8e1e Mon Sep 17 00:00:00 2001 From: electrikmilk Date: Sat, 13 Aug 2022 17:17:01 -0400 Subject: Base: Add Icon for Partition Editor This adds a 16x16 and 32x32 icon that is missing for the Partition Editor. --- Userland/Applications/PartitionEditor/CMakeLists.txt | 2 +- Userland/Applications/PartitionEditor/main.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'Userland') diff --git a/Userland/Applications/PartitionEditor/CMakeLists.txt b/Userland/Applications/PartitionEditor/CMakeLists.txt index 67b9d19543..42d932d670 100644 --- a/Userland/Applications/PartitionEditor/CMakeLists.txt +++ b/Userland/Applications/PartitionEditor/CMakeLists.txt @@ -11,5 +11,5 @@ set(SOURCES PartitionModel.cpp ) -serenity_app(PartitionEditor ICON app-space-analyzer) +serenity_app(PartitionEditor ICON app-partition-editor) target_link_libraries(PartitionEditor LibMain LibGUI LibPartition) diff --git a/Userland/Applications/PartitionEditor/main.cpp b/Userland/Applications/PartitionEditor/main.cpp index dff685ce4d..66cca3d569 100644 --- a/Userland/Applications/PartitionEditor/main.cpp +++ b/Userland/Applications/PartitionEditor/main.cpp @@ -39,8 +39,7 @@ ErrorOr serenity_main(Main::Arguments arguments) TRY(Core::System::unveil("/res", "r")); TRY(Core::System::unveil(nullptr, nullptr)); - // FIXME: PartitionEditor needs its own icon. - auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-space-analyzer"sv)); + auto app_icon = TRY(GUI::Icon::try_create_default_icon("app-partition-editor"sv)); auto window = TRY(GUI::Window::try_create()); window->set_title("Partition Editor"); -- cgit v1.2.3