1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:47:44 +00:00

Magnifier: Make a custom 16x16 icon for this app + tweak 32x32 version

Stop piggybacking on the generic "find" icon and make a custom one. :^)
This commit is contained in:
Andreas Kling 2021-07-04 22:34:48 +02:00
parent 3e63633e1c
commit 3368e54224
5 changed files with 2 additions and 4 deletions

View file

@ -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;