From 3368e542245554d0f3ed946a6000831cf74ed58a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 4 Jul 2021 22:34:48 +0200 Subject: Magnifier: Make a custom 16x16 icon for this app + tweak 32x32 version Stop piggybacking on the generic "find" icon and make a custom one. :^) --- Userland/Applications/Magnifier/CMakeLists.txt | 2 +- Userland/Applications/Magnifier/main.cpp | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'Userland') 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; -- cgit v1.2.3