diff --git a/Base/res/icons/16x16/app-magnifier.png b/Base/res/icons/16x16/app-magnifier.png new file mode 100644 index 0000000000..75d6a82f1c Binary files /dev/null and b/Base/res/icons/16x16/app-magnifier.png differ diff --git a/Base/res/icons/32x32/app-magnifier.png b/Base/res/icons/32x32/app-magnifier.png new file mode 100644 index 0000000000..44ac341af0 Binary files /dev/null and b/Base/res/icons/32x32/app-magnifier.png differ diff --git a/Base/res/icons/32x32/find.png b/Base/res/icons/32x32/find.png deleted file mode 100644 index 7fb1c58161..0000000000 Binary files a/Base/res/icons/32x32/find.png and /dev/null differ diff --git a/Userland/Applications/Magnifier/CMakeLists.txt b/Userland/Applications/Magnifier/CMakeLists.txt index 0099d771d9..0118a39ab8 100644 --- a/Userland/Applications/Magnifier/CMakeLists.txt +++ b/Userland/Applications/Magnifier/CMakeLists.txt @@ -10,5 +10,5 @@ set(SOURCES main.cpp ) -serenity_app(Magnifier ICON find) +serenity_app(Magnifier ICON app-magnifier) target_link_libraries(Magnifier LibGUI) diff --git a/Userland/Applications/Magnifier/main.cpp b/Userland/Applications/Magnifier/main.cpp index 4b82ded331..2eb30167fd 100644 --- a/Userland/Applications/Magnifier/main.cpp +++ b/Userland/Applications/Magnifier/main.cpp @@ -37,9 +37,7 @@ int main(int argc, char** argv) return 1; } - // Sneaky! - // FIXME: Doesn't have a 32x32 icon yet, need to make one! - auto app_icon = GUI::Icon::default_icon("find"); + auto app_icon = GUI::Icon::default_icon("app-magnifier"); // 4px on each side for padding constexpr int window_dimensions = 200 + 4 + 4;