diff --git a/Base/res/icons/16x16/app-partition-editor.png b/Base/res/icons/16x16/app-partition-editor.png new file mode 100644 index 00000000000..b09a6abaff6 Binary files /dev/null and b/Base/res/icons/16x16/app-partition-editor.png differ diff --git a/Base/res/icons/32x32/app-partition-editor.png b/Base/res/icons/32x32/app-partition-editor.png new file mode 100644 index 00000000000..8b75b46111a Binary files /dev/null and b/Base/res/icons/32x32/app-partition-editor.png differ diff --git a/Userland/Applications/PartitionEditor/CMakeLists.txt b/Userland/Applications/PartitionEditor/CMakeLists.txt index 67b9d195436..42d932d6709 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 dff685ce4d0..66cca3d569f 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");