diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-04 22:34:48 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-04 23:15:17 +0200 |
commit | 3368e542245554d0f3ed946a6000831cf74ed58a (patch) | |
tree | a3e2bcdd04b8b5206ed702343ad5572ac9e1011d /Userland | |
parent | 3e63633e1c5160539fd4c18c9de216dbcfbe8147 (diff) | |
download | serenity-3368e542245554d0f3ed946a6000831cf74ed58a.zip |
Magnifier: Make a custom 16x16 icon for this app + tweak 32x32 version
Stop piggybacking on the generic "find" icon and make a custom one. :^)
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/Magnifier/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Userland/Applications/Magnifier/main.cpp | 4 |
2 files changed, 2 insertions, 4 deletions
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; |